From 73d6f4144fc246161652e43351253a7e9a8ef33e Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 23 Oct 2012 10:31:27 +0200 Subject: get rid of P/LP types --- include/debug.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/debug.h') 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; -- cgit