summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2010-01-09 17:42:54 +0000
committerBertrik Sikken <bertrik@sikken.nl>2010-01-09 17:42:54 +0000
commitf736159e5c0fe543aac10c5cd44ea1e0ede264ef (patch)
tree5c81ccdd3a44034d08532d5c7ce53cbe39d1bda1 /apps/tree.c
parent3d53182cef03b7d6581ae972d651f5c64d2448b0 (diff)
downloadrockbox-f736159e5c0fe543aac10c5cd44ea1e0ede264ef.tar.gz
rockbox-f736159e5c0fe543aac10c5cd44ea1e0ede264ef.zip
Make a few global variables static instead of global where possible
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24206 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 5a8445cacf..dda36903e7 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -84,7 +84,7 @@ struct gui_synclist tree_lists;
84/* I put it here because other files doesn't use it yet, 84/* I put it here because other files doesn't use it yet,
85 * but should be elsewhere since it will be used mostly everywhere */ 85 * but should be elsewhere since it will be used mostly everywhere */
86#ifdef HAVE_BUTTONBAR 86#ifdef HAVE_BUTTONBAR
87struct gui_buttonbar tree_buttonbar; 87static struct gui_buttonbar tree_buttonbar;
88#endif 88#endif
89static struct tree_context tc; 89static struct tree_context tc;
90 90