diff options
author | dgp@users.sourceforge.net <dgp> | 2002-08-02 03:18:07 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2002-08-02 03:18:07 (GMT) |
commit | 9a77d866090ff3bc60372100aedbc59b1fbfa921 (patch) | |
tree | 3b021ef5ff28df239612660b48ce6c72906202da /unix | |
parent | 5581b7731877df7c0aab809ff97f1a04d6dcf122 (diff) | |
download | tk-9a77d866090ff3bc60372100aedbc59b1fbfa921.zip tk-9a77d866090ff3bc60372100aedbc59b1fbfa921.tar.gz tk-9a77d866090ff3bc60372100aedbc59b1fbfa921.tar.bz2 |
silenced compiler warning
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixWm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c index b2521a0..c18c2a2 100644 --- a/unix/tkUnixWm.c +++ b/unix/tkUnixWm.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: tkUnixWm.c,v 1.27 2002/07/25 21:35:23 pspjuth Exp $ + * RCS: @(#) $Id: tkUnixWm.c,v 1.28 2002/08/02 03:18:07 dgp Exp $ */ #include "tkPort.h" @@ -982,7 +982,8 @@ Tk_WmObjCmd(clientData, interp, objc, objv) WMOPT_POSITIONFROM, WMOPT_PROTOCOL, WMOPT_RESIZABLE, WMOPT_SIZEFROM, WMOPT_STACKORDER, WMOPT_STATE, WMOPT_TITLE, WMOPT_TRANSIENT, WMOPT_WITHDRAW }; - int index, length; + int index; + size_t length; char *argv1; TkWindow *winPtr; TkDisplay *dispPtr = ((TkWindow *) tkwin)->dispPtr; |