mirror of
https://github.com/reactos/reactos.git
synced 2025-05-01 19:50:36 +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 FALSE 0
|
||||||
#define TRUE 1
|
#define TRUE 1
|
||||||
|
|
||||||
static char * argv0 = "";
|
static const char * argv0 = "";
|
||||||
static char * filename = NULL;
|
static char * filename = NULL;
|
||||||
static char * build_tag = NULL;
|
static char * build_tag = NULL;
|
||||||
|
|
||||||
int count_wide_string( wchar_t *str )
|
int count_wide_string( const wchar_t *str )
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for( i = 0; str[i]; i++ )
|
for( i = 0; str[i]; i++ )
|
||||||
|
|
Loading…
Reference in a new issue