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
a0b63d88
Commit
a0b63d88
authored
Dec 08, 2014
by
Thomas Jahns
🤸
Browse files
Simplify query function.
parent
a10eb91c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/stream.c
View file @
a0b63d88
...
...
@@ -2186,9 +2186,8 @@ void streamGetIndexList ( int nstreams, int * streamIndexList )
int
streamInqNvars
(
int
streamID
)
{
stream_t
*
streamptr
;
streamptr
=
(
stream_t
*
)
reshGetVal
(
streamID
,
&
streamOps
);
return
(
streamptr
->
nvars
);
stream_t
*
streamptr
=
reshGetVal
(
streamID
,
&
streamOps
);
return
streamptr
->
nvars
;
}
...
...
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