diff options
author | dgp <dgp@noemail.net> | 2003-01-09 01:00:35 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2003-01-09 01:00:35 (GMT) |
commit | e22dd9f7fbadcc7286007df3b9ca8b79bc3745ee (patch) | |
tree | d5246c7891514f1fa5d80a5713e3d47689663a03 /generic/tkStubImg.c | |
parent | af21ae432a96054b3dcaf055b74b50eb59c96cef (diff) | |
download | tk-e22dd9f7fbadcc7286007df3b9ca8b79bc3745ee.zip tk-e22dd9f7fbadcc7286007df3b9ca8b79bc3745ee.tar.gz tk-e22dd9f7fbadcc7286007df3b9ca8b79bc3745ee.tar.bz2 |
Use explicit "static int" type, not implicit "static".
FossilOrigin-Name: 0d2a3fccb810e62ac9f249aaed2cc882156f2b0a
Diffstat (limited to 'generic/tkStubImg.c')
-rw-r--r-- | generic/tkStubImg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkStubImg.c b/generic/tkStubImg.c index 691bf78..627f302 100644 --- a/generic/tkStubImg.c +++ b/generic/tkStubImg.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: tkStubImg.c,v 1.2 2000/07/17 23:03:20 ericm Exp $ + * RCS: @(#) $Id: tkStubImg.c,v 1.3 2003/01/09 01:00:36 dgp Exp $ */ #include "tcl.h" @@ -46,7 +46,7 @@ Tk_InitImageArgs(interp, argc, argvPtr) int argc; char ***argvPtr; { - static useNewImage = -1; + static int useNewImage = -1; static char **argv = NULL; if (argv) { |