From: Tom Hughes Date: Wed, 25 Aug 2004 13:25:30 +0000 (+0000) Subject: Removed comma at the end of an enumerator list - this is allowed X-Git-Tag: svn/VALGRIND_2_2_0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbff330cf40d92d5fcc052077a0ba92e9a34ca9b;p=thirdparty%2Fvalgrind.git 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 --- 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__