diff options
author | Elliott Hughes <enh@google.com> | 2016-01-09 11:47:35 -0800 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-01-10 21:19:31 -0600 |
commit | e8943589a8404b96071eb1890d08d3c80941fae8 (patch) | |
tree | c7fedb4b5dc5694bfcbb9835c70844be36a58eb2 | |
parent | 1b983744cde6819fe1d810e98cfac52585ceacaf (diff) | |
download | toybox-e8943589a8404b96071eb1890d08d3c80941fae8.tar.gz |
Fix perror_exit_raw.
Some things are worse when you remove the 'p'.
-rw-r--r-- | lib/lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ void error_exit_raw(char *msg) void perror_exit_raw(char *msg) { - error_exit("%s", msg); + perror_exit("%s", msg); } // Keep reading until full or EOF |