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
3be9a29e
Commit
3be9a29e
authored
Feb 27, 2017
by
Thomas Jahns
🤸
Browse files
Fix implicit conversion.
parent
1dc67a06
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cdf_write.c
View file @
3be9a29e
...
...
@@ -350,7 +350,7 @@ int cdfDefVar(stream_t *streamptr, int varID)
vlistInqVarDimorder
(
vlistID
,
varID
,
&
dimorder
);
size_t
gridsize
=
gridInqSize
(
gridID
);
size_t
gridsize
=
(
size_t
)(
gridInqSize
(
gridID
)
)
;
bool
lchunk
=
(
gridsize
>
1
);
int
gridtype
=
gridInqType
(
gridID
);
int
gridindex
=
nc_grid_index
(
streamptr
,
gridID
);
...
...
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