summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixSelect.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-07-18 19:30:36 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-07-18 19:30:36 (GMT)
commit139df18bab8901ee3c6f4b0fb11e36b45b567b4b (patch)
treeb8daad46e3327cf0d4e9958e2dc550818ab24520 /unix/tkUnixSelect.c
parentd2d5dbf16bcb9a1ff56a5537b5501dff4997ea3a (diff)
downloadtk-139df18bab8901ee3c6f4b0fb11e36b45b567b4b.zip
tk-139df18bab8901ee3c6f4b0fb11e36b45b567b4b.tar.gz
tk-139df18bab8901ee3c6f4b0fb11e36b45b567b4b.tar.bz2
A slightly more efficient placing
Diffstat (limited to 'unix/tkUnixSelect.c')
-rw-r--r--unix/tkUnixSelect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tkUnixSelect.c b/unix/tkUnixSelect.c
index 6e458c3..8f10766 100644
--- a/unix/tkUnixSelect.c
+++ b/unix/tkUnixSelect.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixSelect.c,v 1.24 2009/07/18 19:28:43 dkf Exp $
+ * RCS: @(#) $Id: tkUnixSelect.c,v 1.25 2009/07/18 19:30:36 dkf Exp $
*/
#include "tkInt.h"
@@ -1503,8 +1503,8 @@ SelCvtFromX32(
sprintf(buf, "0x%x", (unsigned int) *propPtr);
Tcl_DStringAppendElement(dsPtr, buf);
}
- Tcl_DStringAppend(dsPtr, " ", 1);
}
+ Tcl_DStringAppend(dsPtr, " ", 1);
}
static void
@@ -1528,8 +1528,8 @@ SelCvtFromX8(
sprintf(buf, "0x%x", (unsigned char) *propPtr);
Tcl_DStringAppendElement(dsPtr, buf);
- Tcl_DStringAppend(dsPtr, " ", 1);
}
+ Tcl_DStringAppend(dsPtr, " ", 1);
}
/*