28 Jan
2003
28 Jan
'03
5:45 a.m.
Gerald Pfeifer wrote:
- int lastblocknr; + int lastblocknr=-1;
FWIW, some compilers will complain on that line (though only us K&R vets remember why). Safer to use whitespace between the = and the -, e.g.
- int lastblocknr; + int lastblocknr = -1;
- Dan -- Dan Kegel http://www.kegel.com http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=78045