|
From: <sv...@va...> - 2009-05-31 19:59:33
|
Author: sewardj
Date: 2009-05-31 20:59:29 +0100 (Sun, 31 May 2009)
New Revision: 10188
Log:
Fix compile breakage in is_systemish_library_name introduced in r10173.
Modified:
trunk/coregrind/m_debuginfo/readmacho.c
Modified: trunk/coregrind/m_debuginfo/readmacho.c
===================================================================
--- trunk/coregrind/m_debuginfo/readmacho.c 2009-05-31 19:11:16 UTC (rev 10187)
+++ trunk/coregrind/m_debuginfo/readmacho.c 2009-05-31 19:59:29 UTC (rev 10188)
@@ -650,7 +650,7 @@
|| 0 == VG_(strncasecmp)(name, "/bin/", 5)
|| 0 == VG_(strncasecmp)(name, "/sbin/", 6)
|| 0 == VG_(strncasecmp)(name, "/opt/", 5)
- || 0 == VG_(strncasecmp)(name, "/sw/", 4
+ || 0 == VG_(strncasecmp)(name, "/sw/", 4)
|| 0 == VG_(strncasecmp)(name, "/System/", 8)
|| 0 == VG_(strncasecmp)(name, "/Library/", 9)) {
return True;
|