summaryrefslogtreecommitdiffstats
path: root/generic/tkPack.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2003-07-17 03:19:43 (GMT)
committerdgp@users.sourceforge.net <dgp>2003-07-17 03:19:43 (GMT)
commit9653b84108456771351fe9ba5d047ec85cc4aa14 (patch)
treef3cd620e221ad04e8f914a630ff6009c37251979 /generic/tkPack.c
parent1a4d2fa375b969ab25736b549a08385da23557ef (diff)
downloadtk-9653b84108456771351fe9ba5d047ec85cc4aa14.zip
tk-9653b84108456771351fe9ba5d047ec85cc4aa14.tar.gz
tk-9653b84108456771351fe9ba5d047ec85cc4aa14.tar.bz2
* generic/tkPack.c (ConfigureSlaves): silence compiler warning
[Bug 771982]
Diffstat (limited to 'generic/tkPack.c')
-rw-r--r--generic/tkPack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkPack.c b/generic/tkPack.c
index cdb52be..5378575 100644
--- a/generic/tkPack.c
+++ b/generic/tkPack.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkPack.c,v 1.17 2003/03/12 00:09:36 mdejong Exp $
+ * RCS: @(#) $Id: tkPack.c,v 1.18 2003/07/17 03:19:43 dgp Exp $
*/
#include "tkPort.h"
@@ -1743,7 +1743,7 @@ ConfigureSlaves(interp, tkwin, objc, objv)
TCL_EXACT, &side) != TCL_OK) {
return TCL_ERROR;
}
- slavePtr->side = side;
+ slavePtr->side = (Side) side;
}
}