summaryrefslogtreecommitdiff
path: root/src/unix
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2006-02-24 22:04:35 +0000
committerTim Angus <tim@ngus.net>2006-02-24 22:04:35 +0000
commite9456d7a58fc721cc5c931838399d9734b6fd971 (patch)
treeece21f7411a55bb9bfec20a5e516d589726aa272 /src/unix
parent5c520de1c5d9fe71dadea68767535ce27add2dba (diff)
* Merged ioq3-r584
Diffstat (limited to 'src/unix')
-rw-r--r--src/unix/unix_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unix/unix_main.c b/src/unix/unix_main.c
index 156407e0..6e9ead4a 100644
--- a/src/unix/unix_main.c
+++ b/src/unix/unix_main.c
@@ -767,11 +767,11 @@ static void* try_dlopen(const char* base, const char* gamedir, const char* fname
}
void *Sys_LoadDll( const char *name, char *fqpath ,
- long (**entryPoint)(long, ...),
- long (*systemcalls)(long, ...) )
+ intptr_t (**entryPoint)(int, ...),
+ intptr_t (*systemcalls)(intptr_t, ...) )
{
void *libHandle;
- void (*dllEntry)( long (*syscallptr)(long, ...) );
+ void (*dllEntry)( intptr_t (*syscallptr)(intptr_t, ...) );
char curpath[MAX_OSPATH];
char fname[MAX_OSPATH];
char *basepath;