summaryrefslogtreecommitdiffstats
path: root/include/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/debug.h')
-rw-r--r--include/debug.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/debug.h b/include/debug.h
index cb5da28..eeda9b6 100644
--- a/include/debug.h
+++ b/include/debug.h
@@ -64,10 +64,10 @@ static inline const char *wine_dbgstr_an( const char * s, int n )
}
static inline const char *wine_dbgstr_wn( const WCHAR *s, int n )
{
- static LPSTR p_ret[10];
+ static CHAR *p_ret[10];
static int i;
- LPSTR ret;
+ CHAR *ret;
DWORD len;
if (!s) return "";
@@ -82,10 +82,10 @@ static inline const char *wine_dbgstr_wn( const WCHAR *s, int n )
static inline const char *wine_dbg_sprintf( const char *format, ...)
{
- static LPSTR p_ret[10];
+ static CHAR *p_ret[10];
static int i;
- LPSTR ret;
+ CHAR *ret;
DWORD len;
va_list ap;