diff options
author | sabetts <sabetts> | 2002-01-11 10:47:07 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2002-01-11 10:47:07 +0000 |
commit | f92fdee896fa396680b994b709d6ac775636a44c (patch) | |
tree | d95028fe9c6293daaa531b2ad69ef5f79a5b28b2 /src | |
parent | 7760dea7c2bc409fc5dc8db8774ff52ddcdd68a0 (diff) | |
download | ratpoison-f92fdee896fa396680b994b709d6ac775636a44c.zip |
(handler): store the error text at the beginning of
the string instead of 7 bytes in.
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -202,7 +202,7 @@ handler (Display *d, XErrorEvent *e) if (ignore_badwindow && e->error_code == BadWindow) return 0; - XGetErrorText (d, e->error_code, error_msg + 7, sizeof (error_msg) - 7); + XGetErrorText (d, e->error_code, error_msg, sizeof (error_msg)); fprintf (stderr, "ratpoison: ERROR: %s!\n", error_msg); /* If there is already an error to report, replace it with this new |