From 7db9a952bcbb24c4465041a7d6d825029cbcef49 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 21 Jan 2016 13:42:34 -0600 Subject: [PATCH] Fix an error in conditional compilation introduced in the last set of changes --- include/sys/syscall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sys/syscall.h b/include/sys/syscall.h index 362a8b2dac..87bd73faf0 100644 --- a/include/sys/syscall.h +++ b/include/sys/syscall.h @@ -213,7 +213,7 @@ #ifdef CONFIG_SYSTEM_TIME64 # define SYS_clock_systimer64 (__SYS_clock+0) -#endif +#else # define SYS_clock_systimer32 (__SYS_clock+0) #endif #define SYS_clock_getres (__SYS_clock+1)