projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5b8483
)
Fix missing right paren.
author
Ben Pfaff
<blp@cs.stanford.edu>
Tue, 5 Oct 2004 20:10:44 +0000
(20:10 +0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Tue, 5 Oct 2004 20:10:44 +0000
(20:10 +0000)
src/utils/backtrace
patch
|
blob
|
history
diff --git
a/src/utils/backtrace
b/src/utils/backtrace
index 18ff195321eb62effb4010dfd9eae8cd24534246..0dd28420e3d4cfb38caade7dfdec1913ddc6d4cb 100755
(executable)
--- a/
src/utils/backtrace
+++ b/
src/utils/backtrace
@@
-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;