summaryrefslogtreecommitdiffstats
path: root/include/debug.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 11:25:34 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:26:29 +0100
commit30557984c4dac095c98ba7ba25afa6948d6f9934 (patch)
tree4e490c92fbeb44efef0e53fbbe10f938e7822425 /include/debug.h
parentb19defc32740225273c7efa63a784de18cde3dd1 (diff)
downloadmsitools-30557984c4dac095c98ba7ba25afa6948d6f9934.tar.gz
msitools-30557984c4dac095c98ba7ba25afa6948d6f9934.tar.xz
msitools-30557984c4dac095c98ba7ba25afa6948d6f9934.zip
get rid of the stupid Win32 CHAR type
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 9d38a20..c3bc2be 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 CHAR *p_ret[10];
+ static char *p_ret[10];
static int i;
- CHAR *ret;
+ char *ret;
unsigned 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 CHAR *p_ret[10];
+ static char *p_ret[10];
static int i;
- CHAR *ret;
+ char *ret;
unsigned len;
va_list ap;