|
From: <sv...@va...> - 2009-07-26 08:41:06
|
Author: bart
Date: 2009-07-26 09:40:51 +0100 (Sun, 26 Jul 2009)
New Revision: 10605
Log:
Display sem_open() mode in octal format instead of hexadecimal format.
Modified:
trunk/drd/drd_semaphore.c
Modified: trunk/drd/drd_semaphore.c
===================================================================
--- trunk/drd/drd_semaphore.c 2009-07-26 08:40:17 UTC (rev 10604)
+++ trunk/drd/drd_semaphore.c 2009-07-26 08:40:51 UTC (rev 10605)
@@ -261,7 +261,7 @@
{
VG_(message)(Vg_UserMsg,
"[%d] sem_open 0x%lx name %s"
- " oflag %ld mode 0x%lx value %u\n",
+ " oflag %ld mode %#lo value %u\n",
DRD_(thread_get_running_tid)(),
semaphore, name, oflag, mode, value);
}
|