From 03d46879c4cf2c9ff69827968a11b155c4cf4089 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Wed, 10 Aug 2005 09:47:19 +0000 Subject: [PATCH] Fix gcc 4.0 warnings. --- include/wine/winbase16.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wine/winbase16.h b/include/wine/winbase16.h index 9ebc0fc69d9..0eed9a0fd3c 100644 --- a/include/wine/winbase16.h +++ b/include/wine/winbase16.h @@ -92,13 +92,13 @@ typedef struct _TDB HANDLE16 hPDB; /* 60 Selector of PDB (i.e. PSP) */ SEGPTR dta; /* 62 Current DTA */ BYTE curdrive; /* 66 Current drive */ - BYTE curdir[65]; /* 67 Current directory */ + CHAR curdir[65]; /* 67 Current directory */ WORD nCmdShow; /* a8 cmdShow parameter to WinMain */ HTASK16 hYieldTo; /* aa Next task to schedule */ DWORD dlls_to_init; /* ac Ptr to DLLs to initialize */ HANDLE16 hCSAlias; /* b0 Code segment for this TDB */ WORD thunks[8*4]; /* b2 Make proc instance thunks */ - BYTE module_name[8]; /* f2 Module name for task */ + CHAR module_name[8]; /* f2 Module name for task */ WORD magic; /* fa TDB signature */ HANDLE hEvent; /* fc scheduler event handle */ PDB16 pdb; /* 100 PDB for this task */ -- 2.11.4.GIT