diff options
| author | Mustapha Senhaji <moos@rockbox.org> | 2011-01-18 00:37:17 +0000 |
|---|---|---|
| committer | Mustapha Senhaji <moos@rockbox.org> | 2011-01-18 00:37:17 +0000 |
| commit | ccad6d0dafc207e0e3a584e26fa6155f13db9dba (patch) | |
| tree | 10af9a4168a72fb775d78d92ce29997d9420939e | |
| parent | d2cc5ce58e875a28742ab2fb1707e195b7fc1e34 (diff) | |
| download | rockbox-ccad6d0dafc207e0e3a584e26fa6155f13db9dba.zip rockbox-ccad6d0dafc207e0e3a584e26fa6155f13db9dba.tar.gz rockbox-ccad6d0dafc207e0e3a584e26fa6155f13db9dba.tar.bz2 rockbox-ccad6d0dafc207e0e3a584e26fa6155f13db9dba.tar.xz | |
Few whitespace fixes by Michael Hohmuth FS#11885
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29082 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/wps.c | 2 | ||||
| -rw-r--r-- | apps/misc.c | 2 | ||||
| -rw-r--r-- | firmware/powermgmt.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index e528380..cc20148 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -495,7 +495,7 @@ static void prev_track(unsigned long skip_thresh) #if (CONFIG_CODEC == SWCODEC) audio_pre_ff_rewind(); #else - audio_pause(); + audio_pause(); #endif audio_ff_rewind(0); diff --git a/apps/misc.c b/apps/misc.c index 22f7150..94b2de4 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -764,7 +764,7 @@ void check_bootfile(bool do_rolo) static const struct text_message message={ lines, 2 }; button_clear_queue(); /* Empty the keyboard buffer */ if(gui_syncyesno_run(&message, NULL, NULL) == YESNO_YES) - rolo_load(BOOTDIR "/" BOOTFILE); + rolo_load(BOOTDIR "/" BOOTFILE); } } wrtdate = info.wrtdate; diff --git a/firmware/powermgmt.c b/firmware/powermgmt.c index 6ebbce5..ea19ddc 100644 --- a/firmware/powermgmt.c +++ b/firmware/powermgmt.c @@ -753,7 +753,7 @@ void shutdown_hw(void) if (battery_level_safe()) { /* do not save on critical battery */ #ifdef HAVE_LCD_BITMAP - glyph_cache_save(NULL); + glyph_cache_save(NULL); #endif /* Commit pending writes if needed. Even though we don't do write caching, |