diff options
author | hobbs <hobbs> | 2005-05-23 23:19:33 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-05-23 23:19:33 (GMT) |
commit | c9aff7faacfb21af6c3adfe75ec33a4674e5e60e (patch) | |
tree | 688839dd7bd2d470c330a566d1cb7e42206815e3 /generic | |
parent | b1aaa8a9641695afda195f1e3450c10a4de59670 (diff) | |
download | tk-c9aff7faacfb21af6c3adfe75ec33a4674e5e60e.zip tk-c9aff7faacfb21af6c3adfe75ec33a4674e5e60e.tar.gz tk-c9aff7faacfb21af6c3adfe75ec33a4674e5e60e.tar.bz2 |
* generic/tkFileFilter.c (FreeGlobPatterns): s/null/NULL/
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; |