commit | e8943589a8404b96071eb1890d08d3c80941fae8 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Sat Jan 09 11:47:35 2016 -0800 |
committer | Rob Landley <rob@landley.net> | Sun Jan 10 21:19:31 2016 -0600 |
tree | c7fedb4b5dc5694bfcbb9835c70844be36a58eb2 | |
parent | 1b983744cde6819fe1d810e98cfac52585ceacaf [diff] [blame] |
Fix perror_exit_raw. Some things are worse when you remove the 'p'.
diff --git a/lib/lib.c b/lib/lib.c index c4191d6..3e41c63 100644 --- a/lib/lib.c +++ b/lib/lib.c
@@ -98,7 +98,7 @@ void perror_exit_raw(char *msg) { - error_exit("%s", msg); + perror_exit("%s", msg); } // Keep reading until full or EOF