Ignore:
Timestamp:
07/24/18 20:02:30 (6 years ago)
Author:
tbretz
Message:
Just realized that grep has the -A option -- so the change wasn't necessry.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/root2sql.cc

    r19082 r19083  
    480480    {
    481481        cerr << "DROP TABLE `" << table << "`\n\n";
    482         cerr << "SQL query failed: " << e.what() << endl;
     482        cerr << "SQL query failed:\n" << e.what() << endl;
    483483        return 4;
    484484    }
     
    492492    {
    493493        cerr << query << "\n\n";
    494         cerr << "SQL query failed: " << e.what() << endl;
     494        cerr << "SQL query failed:\n" << e.what() << endl;
    495495        return 5;
    496496    }
     
    583583    {
    584584        cerr << query << "\n\n";
    585         cerr << "SQL query failed (" << query.length() << " bytes): " << e.what() << endl;
     585        cerr << "SQL query failed (" << query.length() << " bytes):\n" << e.what() << endl;
    586586        return 6;
    587587    }
Note: See TracChangeset for help on using the changeset viewer.