aboutsummaryrefslogtreecommitdiffstats
path: root/simple-opt.h
diff options
context:
space:
mode:
authorkatherine <shmibs@shmibbles.me>2018-03-21 01:50:56 -0700
committerkatherine <shmibs@shmibbles.me>2018-03-21 01:50:56 -0700
commitd2043c1d4cc0a1ec2d7c4b2ed7f9b6d529514172 (patch)
tree5eaa340e7b4bf3f916c998e01c777984273b164d /simple-opt.h
parent810a5d355c14a2021b3fee539568a0dfef27d766 (diff)
downloadsimple-opt-d2043c1d4cc0a1ec2d7c4b2ed7f9b6d529514172.tar.gz
squanch clang errors
Diffstat (limited to 'simple-opt.h')
-rw-r--r--simple-opt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/simple-opt.h b/simple-opt.h
index d250e73..ada6233 100644
--- a/simple-opt.h
+++ b/simple-opt.h
@@ -660,7 +660,7 @@ static void simple_opt_print_usage(FILE *f, unsigned width, char *usage_name,
if (options[i].type != SIMPLE_OPT_FLAG) {
if (options[i].custom_arg_string != NULL) {
sprintf(print_buffer + print_buffer_offset,
- options[i].custom_arg_string);
+ "%s", options[i].custom_arg_string);
print_buffer_offset += strlen(options[i].custom_arg_string);
} else {
switch (options[i].type) {