I'm using Qt 4.8.0 built with VS 2008 x64 in Debug. The following line causes an exception.
QTextStream tf(stdout);
This works fine in Release x64 and Debug and Release in x86. Specifically, the failure occurs on line 1163 of qfile.cpp
qint64 pos = (qint64)QT_FTELL(fh);
Why is this happening and how can I fix it?
Thanks
Edit, here is a screen shot showing the error
