From ca2b2be2ee679b1222531cc9e260be14f2ee8ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Tue, 31 Dec 2013 03:00:39 +0100 Subject: [PATCH] Fix UC_NOT_REACHED --- include/ucore/backtrace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ucore/backtrace.h b/include/ucore/backtrace.h index 41afcde..7e09932 100644 --- a/include/ucore/backtrace.h +++ b/include/ucore/backtrace.h @@ -48,7 +48,7 @@ do {\ fprintf(stderr, "UC_NOT_REACHED at %s\n", UC_SRC_LOCATION);\ UC_BACKTRACE_STDERR;\ abort();\ -while (0) +} while (0) #ifdef __cplusplus }