diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2013-08-17 18:25:49 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2013-08-18 10:32:55 +0200 |
commit | c3ce2c28deac121db0de50af63c902e5883fe140 (patch) | |
tree | b1c26a39047cd0b62b4a57522f25ba7dfadc3f07 | |
parent | bee5b8e13837a02b5f2ac09e0c2b90fa5616e0fb (diff) |
Fix one last warning about usage() format string.
Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xset.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |