summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-04-25 09:21:22 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-04-25 09:21:22 +0000
commitc27d51c553f67c4403550b195205197d798cbb75 (patch)
tree6e74bd82d3873e2a7e85a60dc3a867831b93edd7 /apps
parent63c5fc784952c383d0b57c6359497ae28d8ca96c (diff)
downloadrockbox-c27d51c553f67c4403550b195205197d798cbb75.tar.gz
rockbox-c27d51c553f67c4403550b195205197d798cbb75.zip
Long policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6345 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/bmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/bmp.c b/apps/recorder/bmp.c
index 0b1a2793c6..506188790d 100644
--- a/apps/recorder/bmp.c
+++ b/apps/recorder/bmp.c
@@ -71,7 +71,7 @@ short readshort(void* value) {
return bytes[0] | (bytes[1] << 8);
}
-int readlong(void* value) {
+long readlong(void* value) {
unsigned char* bytes = (unsigned char*) value;
return bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24);
}