diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-12-19 16:50:07 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-12-19 16:50:07 +0000 |
| commit | 4b902679cc5fcca7f4e8d83b25112754f7903736 (patch) | |
| tree | 7853f7d80a4254f521107c2c6e7191d3a1e1974e /apps/plugins | |
| parent | d152b6492a2371c261c195494864c3744609cf3c (diff) | |
| download | rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.zip rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.tar.gz rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.tar.bz2 rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.tar.xz | |
Convert queues to use intptr_t for event data and return values as most of the time pointer are not passed and it should make some things a bit cleaner.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11818 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/battery_bench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/battery_bench.c b/apps/plugins/battery_bench.c index 7e439cb..bf0c2f3 100644 --- a/apps/plugins/battery_bench.c +++ b/apps/plugins/battery_bench.c @@ -141,7 +141,7 @@ bool exit_tsr(bool reenter) exit = false; if (exit) { - rb->queue_post(&thread_q, EV_EXIT, NULL); + rb->queue_post(&thread_q, EV_EXIT, 0); while (!s_thread.ended) rb->yield(); /* remove the thread's queue from the broadcast list */ |