diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2017-03-13 20:17:51 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2017-03-13 21:24:52 +0100 |
commit | af8e5e03a8dfac2bd245b82e437cf4b1996a995d (patch) | |
tree | 20b65f570f6a5beb1e496846f0e719603dff379b /nx-X11/programs/Xserver/hw/nxagent/Keystroke.c | |
parent | 8f7b0b75b83c3651f92d6a6e6f8ff6c8f17de061 (diff) | |
download | nx-libs-af8e5e03a8dfac2bd245b82e437cf4b1996a995d.tar.gz nx-libs-af8e5e03a8dfac2bd245b82e437cf4b1996a995d.tar.bz2 nx-libs-af8e5e03a8dfac2bd245b82e437cf4b1996a995d.zip |
Keystroke: whitespace fixes
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Keystroke.c')
-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 fc4868d1c..7eb7451c6 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c @@ -193,7 +193,7 @@ static Bool read_binding_from_xmlnode(xmlNode *node, struct nxagentSpecialKeystr newkm.stroke = KEYSTROKE_END_MARKER; for (int i = 0; nxagentSpecialKeystrokeNames[i] != NULL; i++) { - if (strcmp(nxagentSpecialKeystrokeNames[i],(char *)attr->children->content) == 0) + if (strcmp(nxagentSpecialKeystrokeNames[i], (char *)attr->children->content) == 0) { /* this relies on the values of enum nxagentSpecialKeystroke and the * indices of nxagentSpecialKeystrokeNames being in sync */ |