[quake3-commits] r1783 - in trunk/code: sys tools/asm
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Fri Apr 16 05:29:34 EDT 2010
Author: ludwig
Date: 2010-04-16 05:29:34 -0400 (Fri, 16 Apr 2010)
New Revision: 1783
Modified:
trunk/code/sys/sys_win32.c
trunk/code/tools/asm/cmdlib.c
Log:
64bit Windows fix (patch by Marcus Meissner)
Modified: trunk/code/sys/sys_win32.c
===================================================================
--- trunk/code/sys/sys_win32.c 2010-03-19 08:59:22 UTC (rev 1782)
+++ trunk/code/sys/sys_win32.c 2010-04-16 09:29:34 UTC (rev 1783)
@@ -343,7 +343,7 @@
{
char search[MAX_OSPATH], newsubdirs[MAX_OSPATH];
char filename[MAX_OSPATH];
- int findhandle;
+ intptr_t findhandle;
struct _finddata_t findinfo;
if ( *numfiles >= MAX_FOUND_FILES - 1 ) {
@@ -426,7 +426,7 @@
char **listCopy;
char *list[MAX_FOUND_FILES];
struct _finddata_t findinfo;
- int findhandle;
+ intptr_t findhandle;
int flag;
int i;
Modified: trunk/code/tools/asm/cmdlib.c
===================================================================
--- trunk/code/tools/asm/cmdlib.c 2010-03-19 08:59:22 UTC (rev 1782)
+++ trunk/code/tools/asm/cmdlib.c 2010-04-16 09:29:34 UTC (rev 1783)
@@ -63,7 +63,7 @@
void ExpandWildcards( int *argc, char ***argv )
{
struct _finddata_t fileinfo;
- int handle;
+ intptr_t handle;
int i;
char filename[1024];
char filebase[1024];
More information about the quake3-commits
mailing list