diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkFileFilter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkFileFilter.c b/generic/tkFileFilter.c index 25e9105..59b9985 100644 --- a/generic/tkFileFilter.c +++ b/generic/tkFileFilter.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkFileFilter.c,v 1.7 2005/05/21 23:29:40 dkf Exp $ + * RCS: @(#) $Id: tkFileFilter.c,v 1.8 2005/05/23 23:19:35 hobbs Exp $ */ #include "tkInt.h" @@ -470,7 +470,7 @@ FreeGlobPatterns(clausePtr) { GlobPattern *globPtr = clausePtr->patterns; - while (globPtr != null) { + while (globPtr != NULL) { GlobPattern *toFree = globPtr; globPtr = globPtr->next; |