Ignore:
Timestamp:
2008-11-05T20:40:18+13:00 (15 years ago)
Author:
ak19
Message:

A few more endl instead of slash newline character inserted, may make this more platform independent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/common-src/src/lib/gdbmclass.cpp

    r17701 r17719  
    202202  key_data.dptr = (to_utf8(key)).getcstr();
    203203  if (key_data.dptr == NULL) {
    204     if (logout != NULL) (*logout) << "gdbmclass: out of memory\n";
     204    if (logout != NULL) (*logout) << "gdbmclass: out of memory" << endl;
    205205    return false;
    206206  }
     
    249249  key_data.dptr = (to_utf8(key)).getcstr();
    250250  if (key_data.dptr == NULL) {
    251     if (logout != NULL) (*logout) << "gdbmclass: out of memory\n";
     251    if (logout != NULL) (*logout) << "gdbmclass: out of memory" << endl;
    252252    return false;
    253253  }
     
    256256  data_data.dptr = (to_utf8(data)).getcstr();
    257257  if (data_data.dptr == NULL) {
    258     if (logout != NULL) (*logout) << "gdbmclass: out of memory\n";
     258    if (logout != NULL) (*logout) << "gdbmclass: out of memory" << endl;
    259259    delete []key_data.dptr;
    260260    return false;
Note: See TracChangeset for help on using the changeset viewer.