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
c3bc2ebf
Commit
c3bc2ebf
authored
Jul 25, 2012
by
Thomas Jahns
🤸
Browse files
Fix output format directive for size_t parameter.
parent
b8b97800
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pio_server.c
View file @
c3bc2ebf
...
...
@@ -202,10 +202,11 @@ static
root
,
&
filetype
,
sizeof
(
filetype
));
xassert
(
filetype
>=
MINFILETYPE
&&
filetype
<=
MAXFILETYPE
);
streamID
=
streamOpenWrite
(
filename
,
filetype
);
xdebug
(
"READ FUNCTION CALL FROM WIN: %s, filenamesz=%d,"
" filename=%s, filetype=%d, OPENED STREAM %d"
,
funcMap
[
funcID
],
filenamesz
,
filename
,
filetype
,
streamID
);
free
(
filename
);
xdebug
(
"READ FUNCTION CALL FROM WIN: %s, filenamesz=%zu,"
" filename=%s, filetype=%d, OPENED STREAM %d"
,
funcMap
[
funcID
],
filenamesz
,
filename
,
filetype
,
streamID
);
free
(
filename
);
}
break
;
case
STREAMDEFVLIST
:
...
...
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