diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tkPack.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2003-07-16 Don Porter <dgp@users.sourceforge.net> + + * generic/tkPack.c (ConfigureSlaves): silence compiler warning + [Bug 771982] + 2003-07-16 Jeff Hobbs <jeffh@ActiveState.com> * win/tkWinImage.c (XGetImage): correct init of biSizeImage in diff --git a/generic/tkPack.c b/generic/tkPack.c index 607af25..5ea54cc 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.16 2002/06/14 22:25:12 jenglish Exp $ + * RCS: @(#) $Id: tkPack.c,v 1.16.2.1 2003/07/17 03:17:08 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; } } |