summaryrefslogtreecommitdiffstats
path: root/include/debug.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 10:31:27 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:26:29 +0100
commit73d6f4144fc246161652e43351253a7e9a8ef33e (patch)
tree5c4c8969d494b90aae675d1a3c68b18bed7d36e6 /include/debug.h
parent03613cc7fb190dd94623ebe96c72329d4f1d1475 (diff)
downloadmsitools-73d6f4144fc246161652e43351253a7e9a8ef33e.tar.gz
msitools-73d6f4144fc246161652e43351253a7e9a8ef33e.tar.xz
msitools-73d6f4144fc246161652e43351253a7e9a8ef33e.zip
get rid of P/LP types
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;