summaryrefslogtreecommitdiff
path: root/firmware/logf.c
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2015-01-11 18:02:43 +0100
committerThomas Jarosch <tomj@simonv.com>2015-01-11 18:02:43 +0100
commitcfbd9cb22fc1499c3b2f8207d72dce4cb388e09f (patch)
tree63944006054f4389ef6b189da42cb01c85100cdd /firmware/logf.c
parent5f5a83e1c9c847a974609e901cf58125f1ef6b84 (diff)
downloadrockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.tar.gz
rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.zip
Make a few local variables static
Change-Id: Ieb77a7f2cdf765afa3121320d03c0478cd97eb0f
Diffstat (limited to 'firmware/logf.c')
-rw-r--r--firmware/logf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/logf.c b/firmware/logf.c
index 2fdbfa0f0c..0f05c6590d 100644
--- a/firmware/logf.c
+++ b/firmware/logf.c
@@ -52,7 +52,7 @@
52#include "ata_idle_notify.h" 52#include "ata_idle_notify.h"
53 53
54unsigned char logdiskfbuffer[MAX_LOGDISKF_SIZE]; 54unsigned char logdiskfbuffer[MAX_LOGDISKF_SIZE];
55int logdiskfindex; 55static int logdiskfindex;
56#endif 56#endif
57 57
58/* Only provide all this if asked to */ 58/* Only provide all this if asked to */