Changeset 24114


Ignore:
Timestamp:
07/30/19 07:46:01 (6 years ago)
Author:
bdef
Message:

BUG: fixing typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/wrappers/python/io/FetchPythonData.cpp

    r24112 r24114  
    250250                /*retrieve dimensions: */
    251251                M=(int)PyList_Size(py_matrix);
    252                 N=1
    253 
     252                N=1;
    254253                if (M) {
    255254                        matrix=xNew<double>(M);
     
    269268                /*retrieve dimensions: */
    270269                M=(int)PyTuple_Size(py_matrix);
    271                 N=1
     270                N=1;
    272271                if (M) {
    273272                        matrix=xNew<double>(M);
     
    376375                /*retrieve dimensions: */
    377376                M=(int)PyList_Size(py_matrix);
    378                 N=1
     377                N=1;
    379378                if (M) {
    380379                        matrix=xNew<int>(M);
     
    393392                /*retrieve dimensions: */
    394393                M=(int)PyTuple_Size(py_matrix);
    395                 N=1
     394                N=1;
    396395                if (M) {
    397396                        matrix=xNew<int>(M);
     
    517516                /*retrieve dimensions: */
    518517                M=(int)PyTuple_Size(py_matrix);
    519                 N=1
     518                N=1;
    520519                if (M) {
    521520                        matrix=xNew<bool>(M);
Note: See TracChangeset for help on using the changeset viewer.