From 70a84a356b1c56743618362867b9300007d11998 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 1 Mar 2015 15:58:40 -0600 Subject: Patches from Elliott Hughes to add missing arguments to error_exit() calls. --- toys/other/sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/other/sysctl.c') diff --git a/toys/other/sysctl.c b/toys/other/sysctl.c index 8e57ca1d..d3c4d81d 100644 --- a/toys/other/sysctl.c +++ b/toys/other/sysctl.c @@ -97,7 +97,7 @@ static void process_key(char *key, char *value) if (!value) value = split_key(key); if ((toys.optflags & FLAG_w) && !value) { - error_msg("'%s' not key=value"); + error_msg("'%s' not key=value", key); return; } -- cgit v1.2.3