Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
dd96c575
Commit
dd96c575
authored
Aug 05, 2014
by
Thomas Jahns
🤸
Browse files
Fix implicit type conversion in cdf_create.
parent
9cc63df7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cdf_int.c
View file @
dd96c575
...
...
@@ -56,7 +56,8 @@ void cdf_create(const char *path, int cmode, int *ncidp)
chunksizehint
=
16777216
;
/* 16 MB */
#endif
if
(
cdiNcChunksizehint
!=
CDI_UNDEFID
)
chunksizehint
=
cdiNcChunksizehint
;
if
(
cdiNcChunksizehint
!=
CDI_UNDEFID
)
chunksizehint
=
(
size_t
)
cdiNcChunksizehint
;
cdi_nc__create_funcp
my_nc__create
=
(
cdi_nc__create_funcp
)
namespaceSwitchGet
(
NSSWITCH_NC__CREATE
).
func
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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