diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-24 16:55:35 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-24 16:55:35 +0000 |
commit | 875b71e7f35c15b6f86c9b8183d24aa2a941123d (patch) | |
tree | 99e2851fd659deb09ec531140e7cfa8fccefd8d3 /src/libw32dll/wine/ext.c | |
parent | 94c8fa4b865b80a1113ece12d8596dcaf647aac0 (diff) | |
download | xine-lib-875b71e7f35c15b6f86c9b8183d24aa2a941123d.tar.gz xine-lib-875b71e7f35c15b6f86c9b8183d24aa2a941123d.tar.bz2 |
time for some Christmas presents...
libw32 compiles here without a single compiler warning
CVS patchset: 5946
CVS date: 2003/12/24 16:55:35
Diffstat (limited to 'src/libw32dll/wine/ext.c')
-rw-r--r-- | src/libw32dll/wine/ext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libw32dll/wine/ext.c b/src/libw32dll/wine/ext.c index 7cdfdedc8..dee474d39 100644 --- a/src/libw32dll/wine/ext.c +++ b/src/libw32dll/wine/ext.c @@ -74,7 +74,7 @@ HANDLE WINAPI GetProcessHeap(void) LPVOID WINAPI HeapAlloc(HANDLE heap, DWORD flags, DWORD size) { - static int i = 5; + //static int i = 5; void* m = (flags & 0x8) ? calloc(size, 1) : malloc(size); //printf("HeapAlloc %p %d (%d)\n", m, size, flags); //if (--i == 0) @@ -326,7 +326,7 @@ int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low ) printf("offsets larger than 4Gb not supported\n"); return munmap( start, size_low ); } -static int mapping_size=0; +//static int mapping_size=0; struct file_mapping_s; typedef struct file_mapping_s |