summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixSend.c
diff options
context:
space:
mode:
authorrmax <rmax>2002-08-13 16:20:49 (GMT)
committerrmax <rmax>2002-08-13 16:20:49 (GMT)
commitbc4e5372013f21ac88b33076551c7b876a1f849b (patch)
tree4aedb68777dd619d2d9362d483e881d83f530305 /unix/tkUnixSend.c
parent1dc9c58c0f6a43d1a6bc33ae285f29e0256e5e28 (diff)
downloadtk-bc4e5372013f21ac88b33076551c7b876a1f849b.zip
tk-bc4e5372013f21ac88b33076551c7b876a1f849b.tar.gz
tk-bc4e5372013f21ac88b33076551c7b876a1f849b.tar.bz2
* unix/tkUnixSend.c (Tk_SetAppName): Fixed a compiler warning.
Diffstat (limited to 'unix/tkUnixSend.c')
-rw-r--r--unix/tkUnixSend.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/unix/tkUnixSend.c b/unix/tkUnixSend.c
index 25f712f..4e115c8 100644
--- a/unix/tkUnixSend.c
+++ b/unix/tkUnixSend.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixSend.c,v 1.10 2002/08/05 04:30:41 dgp Exp $
+ * RCS: @(#) $Id: tkUnixSend.c,v 1.11 2002/08/13 16:20:49 rmax Exp $
*/
#include "tkPort.h"
@@ -816,17 +816,15 @@ Tk_SetAppName(tkwin, name)
* set" compiler warnings. */
for (i = 1; ; i++) {
if (i > 1) {
- char *copy;
if (i == 2) {
Tcl_DStringInit(&dString);
Tcl_DStringAppend(&dString, name, -1);
Tcl_DStringAppend(&dString, " #", 2);
offset = Tcl_DStringLength(&dString);
Tcl_DStringSetLength(&dString, offset+TCL_INTEGER_SPACE);
- copy = Tcl_DStringValue(&dString);
- actualName = copy;
+ actualName = Tcl_DStringValue(&dString);
}
- sprintf(copy + offset, "%d", i);
+ sprintf(Tcl_DStringValue(&dString) + offset, "%d", i);
}
w = RegFindName(regPtr, actualName);
if (w == None) {