aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-01-09 11:47:35 -0800
committerRob Landley <rob@landley.net>2016-01-10 21:19:31 -0600
commite8943589a8404b96071eb1890d08d3c80941fae8 (patch)
treec7fedb4b5dc5694bfcbb9835c70844be36a58eb2 /lib/lib.c
parent1b983744cde6819fe1d810e98cfac52585ceacaf (diff)
downloadtoybox-e8943589a8404b96071eb1890d08d3c80941fae8.tar.gz
Fix perror_exit_raw.
Some things are worse when you remove the 'p'.
Diffstat (limited to 'lib/lib.c')
-rw-r--r--lib/lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib.c b/lib/lib.c
index c4191d6c..3e41c63c 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -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