|
From: <sv...@va...> - 2010-04-29 07:11:54
|
Author: bart
Date: 2010-04-29 08:11:46 +0100 (Thu, 29 Apr 2010)
New Revision: 11112
Log:
Suppressed a (harmless) compiler warning that was only reported on Darwin.
Modified:
trunk/drd/drd_semaphore.c
Modified: trunk/drd/drd_semaphore.c
===================================================================
--- trunk/drd/drd_semaphore.c 2010-04-29 07:11:19 UTC (rev 11111)
+++ trunk/drd/drd_semaphore.c 2010-04-29 07:11:46 UTC (rev 11112)
@@ -202,7 +202,7 @@
{
#if defined(VGO_darwin)
const ThreadId vg_tid = VG_(get_running_tid)();
- GenericErrInfo GEI = { DRD_(thread_get_running_tid)() };
+ GenericErrInfo GEI = { DRD_(thread_get_running_tid)(), NULL };
VG_(maybe_record_error)(vg_tid,
GenericErr,
VG_(get_IP)(vg_tid),
|