diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2017-01-21 14:55:13 -0500 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2017-01-21 14:55:13 -0500 |
| commit | 28bf763373ef35ac27a70d5af4afee22bf25e15b (patch) | |
| tree | 9a8f704588cdbb30ac840a6c726ce4f64e1989d4 /firmware/export | |
| parent | 3e738661108fb2a8e3474c6336c2a5c2668f82b6 (diff) | |
| download | rockbox-28bf763373ef35ac27a70d5af4afee22bf25e15b.zip rockbox-28bf763373ef35ac27a70d5af4afee22bf25e15b.tar.gz rockbox-28bf763373ef35ac27a70d5af4afee22bf25e15b.tar.bz2 rockbox-28bf763373ef35ac27a70d5af4afee22bf25e15b.tar.xz | |
Fix warnings - got to (void) the statement
Change-Id: I85ed5071cbf8e309d06ec14159d6581cf876eb35
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h index d33a35f..49249f6 100644 --- a/firmware/export/system.h +++ b/firmware/export/system.h @@ -207,7 +207,7 @@ enum { #ifndef ASSERT_CPU_MODE /* Very useful to have defined properly for your architecture */ #define ASSERT_CPU_MODE(mode, rstatus...) \ - ({ (mode); rstatus; }) + ({ (void)(mode); rstatus; }) #endif #ifndef CPU_MODE_THREAD_CONTEXT |