[issm-svn] r23346 - issm/trunk/src/wrappers/matlab/io
morlighe at issm.ess.uci.edu
morlighe at issm.ess.uci.edu
Thu Sep 27 13:19:33 PDT 2018
Author: morlighe
Date: 2018-09-27 13:19:32 -0700 (Thu, 27 Sep 2018)
New Revision: 23346
Modified:
issm/trunk/src/wrappers/matlab/io/ApiPrintf.cpp
Log:
BUG: trying to fix bug reported by Seth
Modified: issm/trunk/src/wrappers/matlab/io/ApiPrintf.cpp
===================================================================
--- issm/trunk/src/wrappers/matlab/io/ApiPrintf.cpp 2018-09-27 18:16:58 UTC (rev 23345)
+++ issm/trunk/src/wrappers/matlab/io/ApiPrintf.cpp 2018-09-27 20:19:32 UTC (rev 23346)
@@ -14,7 +14,7 @@
void ApiPrintf(const char* string){
/*use mexPrintf in matlab: */
- //mexPrintf(string); /*Messes up percentages (like "interpolation progress: 100.00%")*/
- printf("%s",string);
+ mexPrintf(string); /*Messes up percentages (like "interpolation progress: 100.00%")*/
+ //printf("%s",string);
return;
}
More information about the issm-svn
mailing list