summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2009-07-18 19:30:36 (GMT)
committerdkf <dkf@noemail.net>2009-07-18 19:30:36 (GMT)
commit54ff7c9564cff597ed50b381bc874e6b28f78142 (patch)
treeb8daad46e3327cf0d4e9958e2dc550818ab24520 /unix
parentd16a76259f98d2f0c3bb679362a8fa13e2ff6365 (diff)
downloadtk-54ff7c9564cff597ed50b381bc874e6b28f78142.zip
tk-54ff7c9564cff597ed50b381bc874e6b28f78142.tar.gz
tk-54ff7c9564cff597ed50b381bc874e6b28f78142.tar.bz2
A slightly more efficient placing
FossilOrigin-Name: 58150d01a4f24f2e96a58f1228b8b4680093e2c6
Diffstat (limited to 'unix')
-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);
}
/*