native_posix: Fix undefined macro warning
Fix undefined macro warning if CONFIG_NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME is not selected Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com>
This commit is contained in:
parent
0a56e856c1
commit
0b0e7eeb15
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ static u64_t tick_p; /* Period of the ticker */
|
||||||
static s64_t silent_ticks;
|
static s64_t silent_ticks;
|
||||||
|
|
||||||
static bool real_time_mode =
|
static bool real_time_mode =
|
||||||
#if (CONFIG_NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME)
|
#if defined(CONFIG_NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME)
|
||||||
true;
|
true;
|
||||||
#else
|
#else
|
||||||
false;
|
false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue