diff options
author | Rob Landley <rob@landley.net> | 2009-01-25 16:34:46 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2009-01-25 16:34:46 -0600 |
commit | ddae5e91f6dc0f5bfb4fdf6d5b5bbd8df25d97f0 (patch) | |
tree | fedb3deed6549227978ed3c2592f0ac78f1405e1 | |
parent | 933d7b6fb54bea7e8b57d45f497df94353559ea5 (diff) | |
download | toybox-ddae5e91f6dc0f5bfb4fdf6d5b5bbd8df25d97f0.tar.gz |
Fix thinko.
-rw-r--r-- | lib/lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -339,7 +339,7 @@ char *xabspath(char *path) void xchdir(char *path) { - if (chdir(path)) error_exit("chdir '%s'"); + if (chdir(path)) error_exit("chdir '%s'", path); } // Ensure entire path exists. |