1
0
Fork 0
forked from len0rd/rockbox

long.. not int.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6983 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michiel Van Der Kolk 2005-07-02 10:35:03 +00:00
parent 7de0905fbf
commit a077b9ef12

View file

@ -62,7 +62,7 @@ int tagdb_shiftup(int targetoffset, int startingoffset, int bytes);
static char sbuf[1024]; static char sbuf[1024];
static struct file_entry fe; static struct file_entry fe;
static int currentfeoffset, currentferecord; static long currentfeoffset, currentferecord;
int tagdb_fd = -1; int tagdb_fd = -1;
int tagdb_initialized = 0; int tagdb_initialized = 0;
@ -292,7 +292,7 @@ int rundb_fd = -1;
int rundb_initialized = 0; int rundb_initialized = 0;
struct rundb_header rundbheader; struct rundb_header rundbheader;
static int valid_file, currentreoffset,rundbsize; static long valid_file, currentreoffset,rundbsize;
static struct rundb_entry rundbentry; static struct rundb_entry rundbentry;
/*** RuntimeDatabase code ***/ /*** RuntimeDatabase code ***/