Skip to content

Commit

Permalink
Issue #10: Fix error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
thegrandpoobah committed Jan 27, 2013
1 parent eb086ea commit ed09196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DSGrab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ int _tmain( int argc, TCHAR *argv[] ) {
tcerr << _T( "Cannot convert to the image format specified." ) << std::endl;
return -1;
} catch ( Exception::BadExtension e ) {
tcerr << _T( "The extension " ) << e.extension << _T( " is not support by DSGrab." ) << std::endl;
tcerr << _T( "The extension " ) << e.extension << _T( " is not supported by DSGrab." ) << std::endl;
return -1;
} catch ( Exception::NoSuchDevice ) {
tcerr << _T( "No Capture Device with the name \"" ) << parameters->device << _T( "\" exists. Use the --list argument to list the compatible capture devices on your computer." ) << std::endl;
Expand Down

0 comments on commit ed09196

Please sign in to comment.