Changeset e8a6211 for set.c


Ignore:
Timestamp:
2006-10-22T17:00:15Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
f0071b7
Parents:
66f783f (diff), 6237ded (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from main tree.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • set.c

    r66f783f re8a6211  
    173173char *set_eval_int( set_t *set, char *value )
    174174{
    175         char *s;
     175        char *s = value;
    176176       
    177177        /* Allow a minus at the first position. */
     
    179179                s ++;
    180180       
    181         for( s = value; *s; s ++ )
     181        for( ; *s; s ++ )
    182182                if( !isdigit( *s ) )
    183183                        return NULL;
Note: See TracChangeset for help on using the changeset viewer.