]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix compile breakage in is_systemish_library_name introduced in r10173.
authorJulian Seward <jseward@acm.org>
Sun, 31 May 2009 19:59:29 +0000 (19:59 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 31 May 2009 19:59:29 +0000 (19:59 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10188

coregrind/m_debuginfo/readmacho.c

index dd2e5990678bedbe820a12459cb06bf4fcd2ddf1..21eb08a7e1836581c9360e79434e624bda21bf47 100644 (file)
@@ -650,7 +650,7 @@ static Bool is_systemish_library_name ( UChar* name )
        || 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;