mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
tools/nxstyle.c: Fix a rare false alarm that could occur if a variable or function name begins with the sub-string 'union' or 'struct'. misc fixes under fs/ and sched/ from application of current version of nxstyle.
This commit is contained in:
@@ -606,7 +606,8 @@ int pg_worker(int argc, char *argv[])
|
||||
else
|
||||
{
|
||||
pgerr("ERROR: Timeout!\n");
|
||||
DEBUGASSERT(clock_systimer() - g_starttime < CONFIG_PAGING_TIMEOUT_TICKS);
|
||||
DEBUGASSERT(clock_systimer() - g_starttime <
|
||||
CONFIG_PAGING_TIMEOUT_TICKS);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user