diff options
author | dgp <dgp@users.sourceforge.net> | 2003-01-09 01:00:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-01-09 01:00:36 (GMT) |
commit | 312bb5b8f505e2c58e3b26091f65c731a9c97863 (patch) | |
tree | d5246c7891514f1fa5d80a5713e3d47689663a03 /generic/tkStubImg.c | |
parent | 429e43b644753e770d265227a59ab078bb9eaf04 (diff) | |
download | tk-312bb5b8f505e2c58e3b26091f65c731a9c97863.zip tk-312bb5b8f505e2c58e3b26091f65c731a9c97863.tar.gz tk-312bb5b8f505e2c58e3b26091f65c731a9c97863.tar.bz2 |
Use explicit "static int" type, not implicit "static".
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) { |