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 <jnw@xs4all.nl>.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2617
This commit is contained in:
Tom Hughes 2004-08-25 13:25:30 +00:00
parent cfebbd9108
commit dbff330cf4

View 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__