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
1d65d88a
Commit
1d65d88a
authored
Oct 26, 2015
by
Thomas Jahns
🤸
Browse files
Fix incorrect cast.
parent
931413fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/stream.c
View file @
1d65d88a
...
...
@@ -598,7 +598,7 @@ static int streamOpenA(const char *filename, const char *filemode, int filetype)
{
int
(
*
streamOpenDelegate
)(
const
char
*
filename
,
char
filemode
,
int
filetype
,
stream_t
*
streamptr
,
int
recordBufIsToBeCreated
)
=
(
int
(
*
)(
const
char
*
,
const
char
*
,
int
,
stream_t
*
,
int
))
=
(
int
(
*
)(
const
char
*
,
char
,
int
,
stream_t
*
,
int
))
namespaceSwitchGet
(
NSSWITCH_STREAM_OPEN_BACKEND
).
func
;
fileID
=
streamOpenDelegate
(
filename
,
'r'
,
filetype
,
streamptr
,
1
);
...
...
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