diff options
Diffstat (limited to 'firmware/target')
-rw-r--r-- | firmware/target/hosted/filesystem-app.c | 2 | ||||
-rw-r--r-- | firmware/target/sh/archos/recorder/powermgmt-recorder.c | 4 |
2 files changed, 3 insertions, 3 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 @@ | |||
41 | static const char rbhome[] = "/sdcard"; | 41 | static 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__) |
44 | const char *rbhome; | 44 | static const char *rbhome; |
45 | #else | 45 | #else |
46 | /* YPR0, YPR1 */ | 46 | /* YPR0, YPR1 */ |
47 | static const char rbhome[] = HOME_DIR; | 47 | static const char rbhome[] = HOME_DIR; |
diff --git a/firmware/target/sh/archos/recorder/powermgmt-recorder.c b/firmware/target/sh/archos/recorder/powermgmt-recorder.c index 1e78b8d155..ca6067a4cc 100644 --- a/firmware/target/sh/archos/recorder/powermgmt-recorder.c +++ b/firmware/target/sh/archos/recorder/powermgmt-recorder.c | |||
@@ -85,8 +85,8 @@ static int wrcount = 0; | |||
85 | */ | 85 | */ |
86 | int long_delta; /* long term delta battery voltage */ | 86 | int long_delta; /* long term delta battery voltage */ |
87 | int short_delta; /* short term delta battery voltage */ | 87 | int short_delta; /* short term delta battery voltage */ |
88 | bool disk_activity_last_cycle = false; /* flag set to aid charger time | 88 | static bool disk_activity_last_cycle = false; /* flag set to aid charger time |
89 | * calculation */ | 89 | * calculation */ |
90 | char power_message[POWER_MESSAGE_LEN] = ""; /* message that's shown in | 90 | char power_message[POWER_MESSAGE_LEN] = ""; /* message that's shown in |
91 | debug menu */ | 91 | debug menu */ |
92 | /* percentage at which charging | 92 | /* percentage at which charging |