Changeset 2558 for branches/blt4/src


Ignore:
Timestamp:
Sep 21, 2011, 9:37:11 PM (13 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/src/core/RpLibraryFInterface.cc

    r2544 r2558  
    221221    char* path,                         /* null terminated path */
    222222    char* retText,                      /* return text buffer for fortran*/
    223 
     223    int path_len,
    224224    int retText_len)                    /* length of return text buffer */
    225225{
     
    230230    std::string inPath = "";
    231231
    232     inPath = null_terminate_str(path,path_len);
     232    inPath = null_terminate_str(path, path_len);
    233233
    234234    if ((handle) && (*handle != 0)) {
     
    238238            xmlText = lib->get(inPath);
    239239            if (!xmlText.empty()) {
    240                 fortranify(xmlText.c_str(),retText,retText_len);
     240                fortranify(xmlText.c_str(),retText, retText_len);
    241241            }
    242242
Note: See TracChangeset for help on using the changeset viewer.