diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2024-05-21 21:29:39 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2024-05-21 21:57:51 +0200 |
commit | f94f6b9f0ca45f244daf1fd731bfc15dbccfbabc (patch) | |
tree | f225d35556aaee03b50eb6a43d7cdafe05d4ad8d | |
parent | c9ac944fcffef84672eae9d176fea39de369f856 (diff) | |
download | nx-libs-f94f6b9f0ca45f244daf1fd731bfc15dbccfbabc.tar.gz nx-libs-f94f6b9f0ca45f244daf1fd731bfc15dbccfbabc.tar.bz2 nx-libs-f94f6b9f0ca45f244daf1fd731bfc15dbccfbabc.zip |
Keystroke.c: fix output of keystrokes list
print a newline AFTER the list, not before.
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Keystroke.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c index c9452f187..7534d13a3 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c @@ -544,7 +544,7 @@ char *nxagentFindMatchingKeystrokes(char *name) void nxagentDumpKeystrokes(void) { char *s = nxagentFindMatchingKeystrokes(""); - fprintf(stderr, "Currently known keystrokes:\n%s", s); + fprintf(stderr, "Currently known keystrokes:%s\n", s); SAFE_free(s); } |