Skip to content

Commit

Permalink
Fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Aug 31, 2015
1 parent f9fa979 commit a60c8fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/main.cpp
Expand Up @@ -1168,7 +1168,7 @@ APP_EXPORT int main( int argc, char *argv[] )
QFile dxfFile;
if ( dxfOutputFile == "-" )
{
if ( !dxfFile.open( STDOUT_FILENO, QIODevice::WriteOnly ) )
if ( !dxfFile.open( stdout, QIODevice::WriteOnly ) )
{
std::cerr << "could not open stdout" << std::endl;
return 2;
Expand Down

0 comments on commit a60c8fc

Please sign in to comment.