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/iconmgr.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/iconmgr.c')
-rw-r--r-- | src/iconmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iconmgr.c b/src/iconmgr.c index 9458477..29c3c16 100644 --- a/src/iconmgr.c +++ b/src/iconmgr.c @@ -43,7 +43,7 @@ in this Software without prior written authorization from The Open Group. #include <X11/Xmu/CharSet.h> int iconmgr_textx = siconify_width+11; -WList *Active = NULL; +static WList *Active = NULL; WList *DownIconManager = NULL; int iconifybox_width = siconify_width; int iconifybox_height = siconify_height; |