~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/call_scilab/examples/basicExamples/readwritestring.c

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
        char** pstData  = NULL;
99
99
        SciErr sciErr;
100
100
 
101
 
        //fisrt call to retrieve dimensions
 
101
        //first call to retrieve dimensions
102
102
        sciErr = readNamedMatrixOfString(pvApiCtx, variableToBeRetrieved, &iRows, &iCols, NULL, NULL);
103
103
        if (sciErr.iErr)
104
104
        {
160
160
        char** pstData  = NULL;
161
161
        SciErr sciErr;
162
162
 
163
 
        //fisrt call to retrieve dimensions
 
163
        //first call to retrieve dimensions
164
164
        sciErr = readNamedMatrixOfString(pvApiCtx, variableToBeRetrieved, &iRows, &iCols, NULL, NULL);
165
165
        if (sciErr.iErr)
166
166
        {