]> git.proxmox.com Git - mirror_qemu.git/blobdiff - scripts/cleanup-trace-events.pl
disas/m68k: Avoid unintended sign extension in get_field()
[mirror_qemu.git] / scripts / cleanup-trace-events.pl
index cffbf165dcf718f1089d978edc372dafe5619da1..7e808efb6ac152089732d3f5387a60bd67d9ba65 100755 (executable)
@@ -25,7 +25,7 @@ sub out {
 
 while (<>) {
     if (/^(disable )?([a-z_0-9]+)\(/) {
-        open GREP, '-|', 'git', 'grep', '-l', "trace_$2"
+        open GREP, '-|', 'git', 'grep', '-lw', "trace_$2"
             or die "run git grep: $!";
         my $fname;
         while ($fname = <GREP>) {