[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[leafnode-list] gcc 3.0 warnings in 2.0b8, part #1



(line numbers stripped)

nntpd.c: In function `doxover':
warning: operation on `l' may be undefined

b = strtoul( ++l, &l, 10 );

needs to be changed to:

{
        ++l; 
        b = strtoul(l, &l,10);
}

-- 
Matthias Andree

-- 
leafnode-list@xxxxxxxxxxxxxxxxxxxxxxxxxxxx -- mailing list for leafnode
To unsubscribe, send mail with "unsubscribe" in the subject to the list