Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: tbeu <[email protected]>
  • Loading branch information
NJannasch authored and tbeu committed Jan 2, 2016
1 parent e2e6300 commit 5c47be6
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions C-Sources/ModelicaMatIO.c
Original file line number Diff line number Diff line change
Expand Up @@ -6282,7 +6282,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -6378,7 +6378,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -6470,7 +6470,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -6563,7 +6563,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -6655,7 +6655,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -6746,7 +6746,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -6837,7 +6837,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -6928,7 +6928,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -7019,7 +7019,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -7110,7 +7110,7 @@ ReadCompressedDataSlabN(mat_t *mat,z_stream *z,void *data,
N *= edge[i];
I += dimp[i-1]*start[i];
}
/* Skip all data to the starting indeces */
/* Skip all data to the starting indices */
InflateSkipData(mat,&z_copy,data_type,I);
if ( stride[0] == 1 ) {
for ( i = 0; i < N; i+=edge[0] ) {
Expand Down Expand Up @@ -11238,7 +11238,7 @@ Mat_VarReadDataLinear4(mat_t *mat,matvar_t *matvar,void *data,int start,
*
* @ingroup mat_internal
* @param mat MAT file pointer
* @retuen pointer to the MAT variable or NULL
* @return pointer to the MAT variable or NULL
* @endif
*/
matvar_t *
Expand Down Expand Up @@ -17422,7 +17422,7 @@ WriteInfo5(mat_t *mat, matvar_t *matvar)
*
* @ingroup mat_internal
* @param mat MAT file pointer
* @retuen pointer to the MAT variable or NULL
* @return pointer to the MAT variable or NULL
* @endif
*/
matvar_t *
Expand Down

0 comments on commit 5c47be6

Please sign in to comment.