Small char -> const char fix.

This commit is contained in:
Rémi Assailly 2005-01-21 10:20:04 +00:00 committed by Alexandre Julliard
parent 7b6b24d868
commit 49a6c097b3
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ static int indent = 0;
/* FIXME: support generation of stubless proxies */ /* FIXME: support generation of stubless proxies */
int print_proxy( char *format, ... ) static int print_proxy( const char *format, ... )
{ {
va_list va; va_list va;
int i, r; int i, r;
@ -89,7 +89,7 @@ static void write_stubdesc(void)
print_proxy( "\n"); print_proxy( "\n");
} }
static void write_formatdesc( char *str ) static void write_formatdesc( const char *str )
{ {
print_proxy( "typedef struct _MIDL_%s_FORMAT_STRING\n", str ); print_proxy( "typedef struct _MIDL_%s_FORMAT_STRING\n", str );
indent++; indent++;