diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-13 23:40:04 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-13 23:40:04 (GMT) |
commit | 693798ff6b31d4270815036402f5aa17c1d4e586 (patch) | |
tree | 669c9f4df86a9a0edb9c67c36e547fc377ee7105 /unix/tkUnixSelect.c | |
parent | 93364b14b759b29fabbf097bb81cc4ead64fd21c (diff) | |
download | tk-693798ff6b31d4270815036402f5aa17c1d4e586.zip tk-693798ff6b31d4270815036402f5aa17c1d4e586.tar.gz tk-693798ff6b31d4270815036402f5aa17c1d4e586.tar.bz2 |
Quell warning
Diffstat (limited to 'unix/tkUnixSelect.c')
-rw-r--r-- | unix/tkUnixSelect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixSelect.c b/unix/tkUnixSelect.c index dac5cce..cf2813d 100644 --- a/unix/tkUnixSelect.c +++ b/unix/tkUnixSelect.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixSelect.c,v 1.16 2005/11/13 23:16:11 dkf Exp $ + * RCS: @(#) $Id: tkUnixSelect.c,v 1.17 2005/11/13 23:40:04 dkf Exp $ */ #include "tkInt.h" @@ -1396,7 +1396,7 @@ SelCvtToX( int *numLongsPtr) /* Number of 32-bit words contained in the * result. */ { - char **field; + const char **field; int numFields, i; long *propPtr; |