Fix missing right paren.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 5 Oct 2004 20:10:44 +0000 (20:10 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 5 Oct 2004 20:10:44 +0000 (20:10 +0000)
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;