when compiling on mandrake 10, I get:
cdrom_image.cpp:63: error: cannot convert
std::streampos' toint' in initialization
You're trying to assign the result of tellg to an int;
and it is a std::streampos, which is frequently an int,
but not on libraries designed for big files.
It compiles corectly on mandrake 9.2
Logged In: YES
user_id=535630
Hmm you are right. Unfortunate it's stored and used at
multiple locations. Will put in the todo list.