Changeset 16213


Ignore:
Timestamp:
09/20/13 12:11:12 (12 years ago)
Author:
cborstad
Message:

CHG: typo in print statement

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/IoModel.cpp

    r16209 r16213  
    11001100                case 5: //boolean vector
    11011101                        this->FetchData(&doublearray,&M,&N,vector_enum); //we still have a doublearray, because it might include times in transient mode
    1102                         if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in bindary file");
     1102                        if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in binary file");
    11031103                        for(i=0;i<elements->Size();i++){
    11041104                                Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i));
     
    11081108                case 6: //int vector
    11091109                        this->FetchData(&doublearray,&M,&N,vector_enum); //we still have a doublearray, because it might include times in transient mode
    1110                         if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in bindary file");
     1110                        if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in binary file");
    11111111                        for(i=0;i<elements->Size();i++){
    11121112                                Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i));
     
    11161116                case 7: //IssmDouble vector
    11171117                        this->FetchData(&doublearray,&M,&N,vector_enum);
    1118                         if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in bindary file");
     1118                        if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in binary file");
    11191119                        for(i=0;i<elements->Size();i++){
    11201120                                Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i));
Note: See TracChangeset for help on using the changeset viewer.