Ignore:
Timestamp:
15/04/09 10:34:38 (3 years ago)
Author:
Freddie Akeroyd
Message:

Merge in changes from trunk r1231:r1232 (NXXgetinfo bugfix). Refs #115.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2/src/nxio.c

    r1144 r1233  
    228228 actual stuff for implementing the callback functions 
    229229 =====================================================================*/ 
     230 
     231/* 
     232 * if passed NX_CHAR, then returns dimension of -1 and the caller 
     233 * needs to do a strlen() or equivalent  
     234 */ 
    230235void analyzeDim(const char *typeString, int *rank,  
    231236                            int *iDim, int *type){ 
     
    252257      break; 
    253258    case NX_CHAR: 
    254       iDim[0] = -1; 
     259      iDim[0] = -1;     /* length unknown, caller needs to determine later */ 
    255260      break; 
    256261    default: 
Note: See TracChangeset for help on using the changeset viewer.