diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-26 23:31:40 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-26 23:31:40 +0000 |
| commit | f749093c267eccfdd8141107989a664c5ccec511 (patch) | |
| tree | 2eecad55b7a35842514a8aefcdd4e03cfbf649bb /apps | |
| parent | a363035d9f23fe3f68e28bb8d32b339036576b0e (diff) | |
| download | rockbox-f749093c267eccfdd8141107989a664c5ccec511.zip rockbox-f749093c267eccfdd8141107989a664c5ccec511.tar.gz rockbox-f749093c267eccfdd8141107989a664c5ccec511.tar.bz2 rockbox-f749093c267eccfdd8141107989a664c5ccec511.tar.xz | |
Cosmetic changes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4954 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/misc.c | 4 | ||||
| -rw-r--r-- | apps/misc.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/misc.c b/apps/misc.c index 6d45a64..f04681c 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -233,9 +233,9 @@ bool clean_shutdown(void) return false; } -int default_event_handler(int button) +int default_event_handler(int event) { - switch(button) + switch(event) { case SYS_USB_CONNECTED: usb_screen(); diff --git a/apps/misc.h b/apps/misc.h index 097b6cc..9588886 100644 --- a/apps/misc.h +++ b/apps/misc.h @@ -40,6 +40,6 @@ void screen_dump(void); bool settings_parseline(char* line, char** name, char** value); bool clean_shutdown(void); -int default_event_handler(int button); +int default_event_handler(int event); #endif |