Fix missing right paren.
[pintos-anon] / src / utils / backtrace
index 18ff195321eb62effb4010dfd9eae8cd24534246..0dd28420e3d4cfb38caade7dfdec1913ddc6d4cb 100755 (executable)
@@ -12,7 +12,7 @@ while ($function = <A2L>) {
 sub search_path {
     my ($target) = @_;
     for $dir (split (':', $ENV{PATH})) {
-       my ($file = "$dir/$target";
+       my ($file) = "$dir/$target";
        return $file if -e $file;
     }
     return 0;