removed a redundant semicolon after #endif in mod-sys.c

This commit is contained in:
hyung-hwan 2020-03-22 18:04:38 +00:00
parent 6502a2e388
commit 53a3cdfd23

View File

@ -1971,7 +1971,7 @@ static int fnc_sleep (hawk_rtx_t* rtx, const hawk_fnc_info_t* fi)
rx = 0; rx = 0;
#else #else
rx = sleep(nt.sec); rx = sleep(nt.sec);
#endif; #endif
#elif defined(HAVE_NANOSLEEP) #elif defined(HAVE_NANOSLEEP)
struct timespec req; struct timespec req;
req.tv_sec = nt.sec; req.tv_sec = nt.sec;