diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-08-17 16:28:50 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-08-17 16:28:50 +0000 |
commit | c653dbb0f0fee5655c2b7ef55857398cffbf8386 (patch) | |
tree | b723fa34eb0bc42575a9973f50580c3f35e482b8 /app/xset | |
parent | 31919e64a36ecd0efe1be76cbb2948d0b55dfa0d (diff) |
Fix one last warning about usage() format string.
Diffstat (limited to 'app/xset')
-rw-r--r-- | app/xset/xset.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/xset/xset.c b/app/xset/xset.c index f461d4b59..98f552ff3 100644 --- a/app/xset/xset.c +++ b/app/xset/xset.c @@ -325,8 +325,7 @@ main(int argc, char *argv[]) usage("low-mark must be greater than 0"); } if (himark <= lowmark) { - usage("hi-mark must be greater than low-mark", - NULL); + usage("hi-mark must be greater than low-mark"); } if (i >= argc) { set_font_cache(dpy, himark, lowmark, balance); |