summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
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 {
61 61
62 62
63#ifdef ROCKBOX_LITTLE_ENDIAN 63#ifdef ROCKBOX_LITTLE_ENDIAN
64#define readshort(x) x 64#define readshort(x) *(x)
65#define readlong(x) x 65#define readlong(x) *(x)
66#else 66#else
67 67
68/* Endian functions */ 68/* big endian functions */
69short readshort(void* value) { 69static short readshort(short *value) {
70 unsigned char* bytes = (unsigned char*) value; 70 unsigned char* bytes = (unsigned char*) value;
71 return bytes[0] | (bytes[1] << 8); 71 return bytes[0] | (bytes[1] << 8);
72} 72}
73 73
74long readlong(void* value) { 74static long readlong(long *value) {
75 unsigned char* bytes = (unsigned char*) value; 75 unsigned char* bytes = (unsigned char*) value;
76 return (long)bytes[0] | ((long)bytes[1] << 8) | 76 return (long)bytes[0] | ((long)bytes[1] << 8) |
77 ((long)bytes[2] << 16) | ((long)bytes[3] << 24); 77 ((long)bytes[2] << 16) | ((long)bytes[3] << 24);