Changeset 15765


Ignore:
Timestamp:
2008-05-28T16:19:03+12:00 (16 years ago)
Author:
mdewsnip
Message:

A couple of minor whitespace improvements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/colservr/sqlbrowsefilter.cpp

    r15764 r15765  
    9494  if (sql_db_ptr == NULL) {
    9595    // most likely a configuration problem
    96     logout << text_t2ascii
    97        << "configuration error: sqlbrowsefilter contains a null sqldbclass\n\n";
     96    logout << text_t2ascii << "configuration error: sqlbrowsefilter contains a null sqldbclass\n\n";
    9897    err = configurationError;
    9998    return;
     
    104103  if (!sql_db_ptr->opendatabase (sql_db_filename, DB_READER, 100, false)) {
    105104    // most likely a system problem (we have already checked that the database exists)
    106     logout << text_t2ascii
    107        << "system problem: open on database \""
    108        << sql_db_filename << "\" failed\n\n";
     105    logout << text_t2ascii << "system problem: open on database \"" << sql_db_filename << "\" failed\n\n";
    109106    err = systemProblem;
    110107    return;
Note: See TracChangeset for help on using the changeset viewer.