diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-03-28 19:46:27 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-03-28 19:46:27 +0200 |
commit | faa52bdcc0221de2d8fae950e409a8ac5e05bfcd (patch) | |
tree | 7e1641219e1d65d82f8e5467a1a599d11fd6164c /components/keyboard_indicators.c | |
parent | 2289798b6d3565d96cc81d5208c50afa2010e296 (diff) |
Format error messages properly
Make use of strerror(errno) and format all errors equally:
function ['parameters']: error message
Diffstat (limited to 'components/keyboard_indicators.c')
-rw-r--r-- | components/keyboard_indicators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/keyboard_indicators.c b/components/keyboard_indicators.c index 47b52c6..76cf17e 100644 --- a/components/keyboard_indicators.c +++ b/components/keyboard_indicators.c @@ -11,7 +11,7 @@ keyboard_indicators(void) XKeyboardState state; if (dpy == NULL) { - fprintf(stderr, "Cannot open display"); + fprintf(stderr, "Cannot open display\n"); return NULL; } XGetKeyboardControl(dpy, &state); |