Changeset 22730


Ignore:
Timestamp:
05/01/18 02:29:32 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: use printf instead of mexPrintf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/wrappers/matlab/io/ApiPrintf.cpp

    r15269 r22730  
    1515
    1616        /*use mexPrintf in matlab: */
    17         mexPrintf(string);
     17        //mexPrintf(string); /*Messes up percentages (like "interpolation progress: 100.00%")*/
     18        printf("%s",string);
    1819        return;
    1920}
Note: See TracChangeset for help on using the changeset viewer.