Fix warnings - got to (void) the statement

Change-Id: I85ed5071cbf8e309d06ec14159d6581cf876eb35
This commit is contained in:
Michael Sevakis 2017-01-21 14:55:13 -05:00
parent 3e73866110
commit 28bf763373

View file

@ -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