summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-05-08 22:11:15 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-05-08 22:11:15 +0000
commit1188f933aa2cff23ef8f56baa52cd4f3e1048f47 (patch)
tree6603830f086ec84ba949086f79dfc4df9a9cd69a /apps
parented5b06b04c9abbedc5f3c326f057af5f38917151 (diff)
downloadrockbox-1188f933aa2cff23ef8f56baa52cd4f3e1048f47.tar.gz
rockbox-1188f933aa2cff23ef8f56baa52cd4f3e1048f47.zip
Made it build warning-free on the sim. This could not have worked in the sim
previously. Made readshort() and readlong() static. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6444 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/bmp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/recorder/bmp.c b/apps/recorder/bmp.c
index 6b557783cf..e55c2f9d1e 100644
--- a/apps/recorder/bmp.c
+++ b/apps/recorder/bmp.c
@@ -61,17 +61,17 @@ struct Fileheader {
#ifdef ROCKBOX_LITTLE_ENDIAN
-#define readshort(x) x
-#define readlong(x) x
+#define readshort(x) *(x)
+#define readlong(x) *(x)
#else
-/* Endian functions */
-short readshort(void* value) {
+/* big endian functions */
+static short readshort(short *value) {
unsigned char* bytes = (unsigned char*) value;
return bytes[0] | (bytes[1] << 8);
}
-long readlong(void* value) {
+static long readlong(long *value) {
unsigned char* bytes = (unsigned char*) value;
return (long)bytes[0] | ((long)bytes[1] << 8) |
((long)bytes[2] << 16) | ((long)bytes[3] << 24);