diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-10-14 12:29:19 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-10-14 12:29:19 +0000 |
| commit | 6c9db4c4c4a479f7de00245dd37dfe6676a9d8b5 (patch) | |
| tree | ef0fa75958ec72990a32df539200c9617871ab5b /apps/gui | |
| parent | 529fb70694e400798b7799bf7cff3cdc9b7f3668 (diff) | |
| download | rockbox-6c9db4c4c4a479f7de00245dd37dfe6676a9d8b5.zip rockbox-6c9db4c4c4a479f7de00245dd37dfe6676a9d8b5.tar.gz rockbox-6c9db4c4c4a479f7de00245dd37dfe6676a9d8b5.tar.bz2 rockbox-6c9db4c4c4a479f7de00245dd37dfe6676a9d8b5.tar.xz | |
Fix warning on USB_NONE targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28279 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/usb_screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/usb_screen.h b/apps/gui/usb_screen.h index 24075ae..321c396 100644 --- a/apps/gui/usb_screen.h +++ b/apps/gui/usb_screen.h @@ -22,7 +22,7 @@ #define _USB_SCREEN_H_ #ifdef USB_NONE -static inline void gui_usb_screen_run(bool early_usb) {} +#define gui_usb_screen_run(early_usb) do {} while(0) #else extern void gui_usb_screen_run(bool early_usb); #endif |