aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2021-02-28 21:50:48 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-06-08 08:07:02 +0200
commit5dcb19b3d7ae4910f3d3cd1015b0840e7d4bf11d (patch)
tree55ce7e5f2b870f03880358450eebb933cd845d1e /nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
parent1338cffc940eb3c3291ee8bea098f79545e969da (diff)
downloadnx-libs-5dcb19b3d7ae4910f3d3cd1015b0840e7d4bf11d.tar.gz
nx-libs-5dcb19b3d7ae4910f3d3cd1015b0840e7d4bf11d.tar.bz2
nx-libs-5dcb19b3d7ae4910f3d3cd1015b0840e7d4bf11d.zip
nxagent: fix RESIZE dialog text to not end with a linefeed
It was the only dialog that had a linefeed a the end.
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Keystroke.c')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Keystroke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
index 9a7c1cd65..aff2e56ab 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
@@ -513,13 +513,13 @@ char *nxagentFindMatchingKeystrokes(char *name)
{
char *tmp;
char *tmp1 = nxagentGetSingleKeystrokeString(cur);
- if (-1 == asprintf(&tmp, "%s %-*s : %s\n", res, maxlen,
+ if (-1 == asprintf(&tmp, "%s\n %-*s : %s", res, maxlen,
nxagentSpecialKeystrokeNames[cur->stroke],
tmp1))
{
SAFE_free(tmp1);
#ifdef TEST
- fprintf(stderr, "%s: returning incomplete result:\n%s", __func__, res);
+ fprintf(stderr, "%s: returning incomplete result:%s\n", __func__, res);
#endif
return res;
}