diff options
author | nijtmans <nijtmans> | 2008-11-03 22:20:22 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-11-03 22:20:22 (GMT) |
commit | 2064e0bf0c5c07805a7318c586066a84a794006d (patch) | |
tree | e4e5fa5d74cdc9875ab031678619f6a273ad51ac /generic/tkOldTest.c | |
parent | 829daa099115e8cba17ba6e5453ee67fa299f6de (diff) | |
download | tk-2064e0bf0c5c07805a7318c586066a84a794006d.zip tk-2064e0bf0c5c07805a7318c586066a84a794006d.tar.gz tk-2064e0bf0c5c07805a7318c586066a84a794006d.tar.bz2 |
ttkEntry.c: fix warning: unused variable 'currentValue'
tkOldTest.c: fix warning: assignment discards qualifiers from pointer target type
Diffstat (limited to 'generic/tkOldTest.c')
-rw-r--r-- | generic/tkOldTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkOldTest.c b/generic/tkOldTest.c index 9697979..3d17686 100644 --- a/generic/tkOldTest.c +++ b/generic/tkOldTest.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkOldTest.c,v 1.3 2008/07/23 23:24:21 nijtmans Exp $ + * RCS: @(#) $Id: tkOldTest.c,v 1.4 2008/11/03 22:20:22 nijtmans Exp $ */ #define USE_OLD_IMAGE @@ -144,7 +144,7 @@ ImageCreate( * will be returned in later callbacks. */ { TImageMaster *timPtr; - char *varName; + const char *varName; int i; varName = "log"; |