aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2024-05-21 21:29:39 +0200
committerUlrich Sibiller <uli42@gmx.de>2024-05-21 21:57:51 +0200
commitf94f6b9f0ca45f244daf1fd731bfc15dbccfbabc (patch)
treef225d35556aaee03b50eb6a43d7cdafe05d4ad8d /nx-X11/programs
parentc9ac944fcffef84672eae9d176fea39de369f856 (diff)
downloadnx-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.
Diffstat (limited to 'nx-X11/programs')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Keystroke.c2
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);
}