Fix to decide data and return type explicity
This commit is contained in:
@@ -2177,7 +2177,7 @@ return(newstring);
|
||||
|
||||
int NextId(void)
|
||||
{
|
||||
static id = 0;
|
||||
static int id = 0;
|
||||
|
||||
return ++id;
|
||||
}
|
||||
@@ -2713,7 +2713,7 @@ M_WCHAR *CycleEnt(LOGICAL init,
|
||||
{
|
||||
static M_TRIE *current ;
|
||||
static M_TRIE *ancestor[M_NAMELEN + 1] ;
|
||||
static length = 0 ;
|
||||
static int length = 0 ;
|
||||
static M_WCHAR name[M_NAMELEN + 1] ;
|
||||
|
||||
if (init)
|
||||
|
||||
@@ -40,7 +40,7 @@ M_WCHAR *m_cyclent(LOGICAL init, unsigned char *type, M_WCHAR **content, unsigne
|
||||
{
|
||||
static M_TRIE *current ;
|
||||
static M_TRIE *ancestor[M_NAMELEN + 1] ;
|
||||
static length = 0 ;
|
||||
static int length = 0 ;
|
||||
static M_WCHAR name[M_NAMELEN + 1] ;
|
||||
|
||||
if (init) {
|
||||
|
||||
@@ -2164,7 +2164,7 @@ return(newstring);
|
||||
|
||||
int NextId(void)
|
||||
{
|
||||
static id = 0;
|
||||
static int id = 0;
|
||||
|
||||
return ++id;
|
||||
}
|
||||
@@ -2700,7 +2700,7 @@ M_WCHAR *CycleEnt(LOGICAL init,
|
||||
{
|
||||
static M_TRIE *current ;
|
||||
static M_TRIE *ancestor[M_NAMELEN + 1] ;
|
||||
static length = 0 ;
|
||||
static int length = 0 ;
|
||||
static M_WCHAR name[M_NAMELEN + 1] ;
|
||||
|
||||
if (init)
|
||||
|
||||
@@ -40,7 +40,7 @@ M_WCHAR *m_cyclent(LOGICAL init, unsigned char *type, M_WCHAR **content, unsigne
|
||||
{
|
||||
static M_TRIE *current ;
|
||||
static M_TRIE *ancestor[M_NAMELEN + 1] ;
|
||||
static length = 0 ;
|
||||
static int length = 0 ;
|
||||
static M_WCHAR name[M_NAMELEN + 1] ;
|
||||
|
||||
if (init) {
|
||||
|
||||
@@ -6467,7 +6467,7 @@ static M_WCHAR *CycleEnt(LOGICAL init,
|
||||
{
|
||||
static M_TRIE *current ;
|
||||
static M_TRIE *ancestor[M_NAMELEN + 1] ;
|
||||
static length = 0 ;
|
||||
static int length = 0 ;
|
||||
static M_WCHAR name[M_NAMELEN + 1] ;
|
||||
|
||||
if (init)
|
||||
|
||||
@@ -40,7 +40,7 @@ M_WCHAR *m_cyclent(LOGICAL init, unsigned char *type, M_WCHAR **content, unsigne
|
||||
{
|
||||
static M_TRIE *current ;
|
||||
static M_TRIE *ancestor[M_NAMELEN + 1] ;
|
||||
static length = 0 ;
|
||||
static int length = 0 ;
|
||||
static M_WCHAR name[M_NAMELEN + 1] ;
|
||||
|
||||
if (init) {
|
||||
|
||||
Reference in New Issue
Block a user