Changeset 24492


Ignore:
Timestamp:
12/20/19 16:27:18 (5 years ago)
Author:
tsantos
Message:

BUG: minor

File:
1 edited

Legend:

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

    r24491 r24492  
    732732        /*Basic verification*/
    733733        if(!pdata) _error_("Impossible to continue: pdata is NULL!\n");
    734         if(*pdata[0]<=0) _error_("Impossible to continue: nvertices <=0!\n");
    735         if(*pdata[1]<=0) _error_("Impossible to continue: nelements <=0!\n");
     734        if(**pdata<=0) _error_("Impossible to continue: nvertices <=0!\n");
     735        if(*(*pdata+1)<=0) _error_("Impossible to continue: nelements <=0!\n");
    736736        if(!pxy) _error_("Impossible to continue: pxy is NULL!\n");
    737737        if(!pelements) _error_("Impossible to continue: pelements is NULL!\n");
Note: See TracChangeset for help on using the changeset viewer.