From dbff330cf40d92d5fcc052077a0ba92e9a34ca9b Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 25 Aug 2004 13:25:30 +0000 Subject: [PATCH] Removed comma at the end of an enumerator list - this is allowed in C99 but not in C89 except as a GNU extension so it's probably best not to rely on it. Patch from Jeroen N. Witmond . git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2617 --- include/valgrind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/valgrind.h b/include/valgrind.h index 33d7be380c..6422f886b5 100644 --- a/include/valgrind.h +++ b/include/valgrind.h @@ -171,7 +171,7 @@ typedef /* Allow printfs to valgrind log. */ VG_USERREQ__PRINTF = 0x1401, - VG_USERREQ__PRINTF_BACKTRACE = 0x1402, + VG_USERREQ__PRINTF_BACKTRACE = 0x1402 } Vg_ClientRequest; #ifndef __GNUC__ -- 2.47.2