mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Fix warnings - got to (void) the statement
Change-Id: I85ed5071cbf8e309d06ec14159d6581cf876eb35
This commit is contained in:
parent
3e73866110
commit
28bf763373
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ enum {
|
||||||
#ifndef ASSERT_CPU_MODE
|
#ifndef ASSERT_CPU_MODE
|
||||||
/* Very useful to have defined properly for your architecture */
|
/* Very useful to have defined properly for your architecture */
|
||||||
#define ASSERT_CPU_MODE(mode, rstatus...) \
|
#define ASSERT_CPU_MODE(mode, rstatus...) \
|
||||||
({ (mode); rstatus; })
|
({ (void)(mode); rstatus; })
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CPU_MODE_THREAD_CONTEXT
|
#ifndef CPU_MODE_THREAD_CONTEXT
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue