Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
c02842ed
Commit
c02842ed
authored
Nov 26, 2014
by
Uwe Schulzweida
Browse files
Fix typo in diagnostic message
parent
9c960791
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/stream_ext.c
View file @
c02842ed
...
...
@@ -411,7 +411,7 @@ int extScanTimestep2(stream_t *streamptr)
tsID
=
streamptr
->
rtsteps
;
if
(
tsID
!=
1
)
Error
(
"Internal problem! unexpec
e
ted timestep %d"
,
tsID
+
1
);
Error
(
"Internal problem! unexpected timestep %d"
,
tsID
+
1
);
taxis
=
&
streamptr
->
tsteps
[
tsID
].
taxis
;
...
...
src/stream_gribapi.c
View file @
c02842ed
...
...
@@ -1511,7 +1511,7 @@ int gribapiScanTimestep2(stream_t * streamptr)
tsID
=
streamptr
->
rtsteps
;
if
(
tsID
!=
1
)
Error
(
"Internal problem! unexpec
e
ted timestep %d"
,
tsID
+
1
);
Error
(
"Internal problem! unexpected timestep %d"
,
tsID
+
1
);
taxis
=
&
streamptr
->
tsteps
[
tsID
].
taxis
;
...
...
src/stream_ieg.c
View file @
c02842ed
...
...
@@ -997,7 +997,7 @@ int iegScanTimestep2(stream_t *streamptr)
tsID
=
streamptr
->
rtsteps
;
if
(
tsID
!=
1
)
Error
(
"Internal problem! unexpec
e
ted timestep %d"
,
tsID
+
1
);
Error
(
"Internal problem! unexpected timestep %d"
,
tsID
+
1
);
taxis
=
&
streamptr
->
tsteps
[
tsID
].
taxis
;
...
...
src/stream_srv.c
View file @
c02842ed
...
...
@@ -418,7 +418,7 @@ int srvScanTimestep2(stream_t *streamptr)
tsID
=
streamptr
->
rtsteps
;
if
(
tsID
!=
1
)
Error
(
"Internal problem! unexpec
e
ted timestep %d"
,
tsID
+
1
);
Error
(
"Internal problem! unexpected timestep %d"
,
tsID
+
1
);
taxis
=
&
streamptr
->
tsteps
[
tsID
].
taxis
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment