diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:24:22 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:24:22 -0700 |
commit | afcad0de54ecd1a8bfaf261e4e6882985a234963 (patch) | |
tree | c3cbfe52cc80dacab9ff14c148e6a55cf1d90577 /src/parse.c | |
parent | 4c2ff3f0a6bae8b369dfb74267f7fa52d511dfb2 (diff) |
Make some more previously global variables into file-scoped statics
Not used from other source files, so no need to export them
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c index e565ad5..eb52c62 100644 --- a/src/parse.c +++ b/src/parse.c @@ -981,7 +981,7 @@ do_string_savecolor(int colormode, char *s) } typedef struct _cnode {int i; struct _cnode *next;} Cnode, *Cptr; -Cptr chead = NULL; +static Cptr chead = NULL; /** * save a color from a var in the twmrc file |