]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Tweak to avoid a trailing space.
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 8 Oct 2013 06:02:01 +0000 (06:02 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 8 Oct 2013 06:02:01 +0000 (06:02 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13627

tests/filter_libc

index 9fad2f5160045e19c518a0e2c36df72cddb036a9..46ba26814c61bcdf1d3e11ac4bbdcf1bd05ab071 100755 (executable)
@@ -14,7 +14,7 @@ while (<>)
     s/\(within \/.*(libc|libSystem).*\)$/(within \/...libc...)/;
 
     # Filter out dynamic loader
-    s/\(in \/.*ld-.*so\)$//;
+    s/ \(in \/.*ld-.*so\)$//;
 
     # Remove the filename -- on some platforms (eg. Linux) it will be in
     # libc, on some (eg. Darwin) it will be in the main executable.