26 Apr
2017
26 Apr
'17
3:21 a.m.
On Sun, 2017-04-09 at 13:12 -0600, Erich E. Hoover wrote:
+ /* process and validate all the command line flags */ + for (i = 1; n && i < argc; i += n) + n = process_argument( &state, i, argc, argv ); + if (!valid_state( &state )) + return 1; + + /* perform the requested operations */ + if (!open_database( &state )) + { + ERR( "Failed to open database '%s'.\n", wine_dbgstr_w(state.database_file) );
For programs it should be WINE_ERR, etc.