diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-02-20 19:43:46 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-02-20 19:43:50 -0800 |
commit | c42515672b2552b2ce604fe523cf133593ab88ec (patch) | |
tree | 7711cf5737ed62bfbb876c154d28a350dc1fbdb8 | |
parent | 5e3ab67c50ddfda53a0e8366bc854562cf297442 (diff) |
Combine error message strings
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xset.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1661,9 +1661,9 @@ local_xerror(Display *dpy, XErrorEvent *rep) "%s: bad font path element (#%ld), possible causes are:\n", progName, rep->resourceid); fprintf(stderr, - " Directory does not exist or has wrong permissions\n"); - fprintf(stderr, " Directory missing fonts.dir\n"); - fprintf(stderr, " Incorrect font server address or syntax\n"); + " Directory does not exist or has wrong permissions\n" + " Directory missing fonts.dir\n" + " Incorrect font server address or syntax\n"); } else if (rep->request_code == X_StoreColors) { switch (rep->error_code) { case BadAccess: |