diff options
Diffstat (limited to 'lib')
-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. |