mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Daniel Verkamp (daniel.verkamp@gmail.com):
- Fix buildno warnings when compiled with GCC 4.2.x or later See issue #3578 for more details. svn path=/trunk/; revision=34844
This commit is contained in:
parent
72fbdac08a
commit
6b50b9e320
1 changed files with 2 additions and 2 deletions
|
@ -33,11 +33,11 @@
|
|||
#define FALSE 0
|
||||
#define TRUE 1
|
||||
|
||||
static char * argv0 = "";
|
||||
static const char * argv0 = "";
|
||||
static char * filename = NULL;
|
||||
static char * build_tag = NULL;
|
||||
|
||||
int count_wide_string( wchar_t *str )
|
||||
int count_wide_string( const wchar_t *str )
|
||||
{
|
||||
int i;
|
||||
for( i = 0; str[i]; i++ )
|
||||
|
|
Loading…
Reference in a new issue