|
From: Tom H. <th...@cy...> - 2004-08-25 13:25:36
|
CVS commit by thughes:
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 <jn...@xs...>.
M +1 -1 valgrind.h 1.27
--- valgrind/include/valgrind.h #1.26:1.27
@@ -172,5 +172,5 @@ typedef
/* Allow printfs to valgrind log. */
VG_USERREQ__PRINTF = 0x1401,
- VG_USERREQ__PRINTF_BACKTRACE = 0x1402,
+ VG_USERREQ__PRINTF_BACKTRACE = 0x1402
} Vg_ClientRequest;
|