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