From e8943589a8404b96071eb1890d08d3c80941fae8 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Sat, 9 Jan 2016 11:47:35 -0800 Subject: Fix perror_exit_raw. Some things are worse when you remove the 'p'. --- lib/lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/lib.c') 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 -- cgit v1.2.3