greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 17719

Show
Ignore:
Timestamp:
2008-11-05 20:40:18 (2 months ago)
Author:
ak19
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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;