summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/filesystem-app.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/target/hosted/filesystem-app.c
parent5f5a83e1c9c847a974609e901cf58125f1ef6b84 (diff)
downloadrockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.tar.gz
rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.zip
Make a few local variables static
Change-Id: Ieb77a7f2cdf765afa3121320d03c0478cd97eb0f
Diffstat (limited to 'firmware/target/hosted/filesystem-app.c')
-rw-r--r--firmware/target/hosted/filesystem-app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/filesystem-app.c b/firmware/target/hosted/filesystem-app.c
index bcc880eab0..0c9943b635 100644
--- a/firmware/target/hosted/filesystem-app.c
+++ b/firmware/target/hosted/filesystem-app.c
@@ -41,7 +41,7 @@
41static const char rbhome[] = "/sdcard"; 41static const char rbhome[] = "/sdcard";
42#elif (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA)) \ 42#elif (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA)) \
43 && !defined(__PCTOOL__) 43 && !defined(__PCTOOL__)
44const char *rbhome; 44static const char *rbhome;
45#else 45#else
46/* YPR0, YPR1 */ 46/* YPR0, YPR1 */
47static const char rbhome[] = HOME_DIR; 47static const char rbhome[] = HOME_DIR;