Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
2a4ce165
Commit
2a4ce165
authored
4 months ago
by
Oliver Heidmann
Committed by
Uwe Schulzweida
4 months ago
Browse files
Options
Downloads
Patches
Plain Diff
removed unused variable, fixed return type of streamCloseNCMem
parent
f95c6465
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!105
Develop
,
!104
M300433/netcdf memory read write
Pipeline
#89397
passed
4 months ago
Stage: basic
Stage: levante
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/cdi.h
+1
-1
1 addition, 1 deletion
src/cdi.h
src/stream.c
+1
-2
1 addition, 2 deletions
src/stream.c
with
2 additions
and
3 deletions
src/cdi.h
+
1
−
1
View file @
2a4ce165
...
...
@@ -355,7 +355,7 @@ int cdiGetProtocol(const char *uri, const char **filename);
int
streamOpenReadNCMem
(
int
ncid
);
int
streamOpenWriteNCMem
(
int
ncid
);
int
streamCloseNCMem
(
int
ncid
);
void
streamCloseNCMem
(
int
ncid
);
// streamOpenRead: Open a dataset for reading
int
streamOpenRead
(
const
char
*
path
);
...
...
This diff is collapsed.
Click to expand it.
src/stream.c
+
1
−
2
View file @
2a4ce165
...
...
@@ -2045,7 +2045,6 @@ void
freePtrAfterNCMem
(
stream_t
*
streamptr
,
int
recordBufIsToBeDeleted
)
{
int
fileID
=
streamptr
->
fileID
;
int
filetype
=
streamptr
->
filetype
;
if
(
fileID
==
CDI_UNDEFID
)
{
...
...
@@ -2069,7 +2068,7 @@ freePtrAfterNCMem(stream_t *streamptr, int recordBufIsToBeDeleted)
}
int
void
streamCloseNCMem
(
int
streamID
)
{
stream_t
*
streamptr
=
stream_to_pointer
(
streamID
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment