aboutsummaryrefslogtreecommitdiff
path: root/lib/xwrap.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-03-01 15:58:40 -0600
committerRob Landley <rob@landley.net>2015-03-01 15:58:40 -0600
commit70a84a356b1c56743618362867b9300007d11998 (patch)
tree2db214da036464cd76a2accb1191e3a9cdc1fc26 /lib/xwrap.c
parent7c3c6a9639ee41fb750f78d87dc8a6cbe4e421a5 (diff)
downloadtoybox-70a84a356b1c56743618362867b9300007d11998.tar.gz
Patches from Elliott Hughes to add missing arguments to error_exit() calls.
Diffstat (limited to 'lib/xwrap.c')
-rw-r--r--lib/xwrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xwrap.c b/lib/xwrap.c
index 0a2b38ff..14703a72 100644
--- a/lib/xwrap.c
+++ b/lib/xwrap.c
@@ -24,7 +24,7 @@ void xstrncat(char *dest, char *src, size_t size)
long len = strlen(src);
if (len+strlen(dest)+1 > size)
- error_exit("'%s%s' > %ld bytes", src, (long)size);
+ error_exit("'%s%s' > %ld bytes", dest, src, (long)size);
strcpy(dest+len, src);
}