]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Removed comma at the end of an enumerator list - this is allowed
authorTom Hughes <tom@compton.nu>
Wed, 25 Aug 2004 13:25:30 +0000 (13:25 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 25 Aug 2004 13:25:30 +0000 (13:25 +0000)
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 <jnw@xs4all.nl>.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2617

include/valgrind.h

index 33d7be380c190d88c80424c628cb5ed7a6768ea8..6422f886b5854da5de4665029dd4cc8b9650fb32 100644 (file)
@@ -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__