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
55cb25e1
Commit
55cb25e1
authored
Jul 25, 2012
by
Thomas Jahns
🤸
Browse files
Fix window buffer size variable type.
parent
db081c81
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pio_interface.c
View file @
55cb25e1
...
...
@@ -389,7 +389,8 @@ modelWinDefBufferSizes(void)
txWin
[
collID
].
size
+=
winBufferOverhead
*
sizeof
(
int
);
sumWinBufferSize
+=
txWin
[
collID
].
size
;
}
xdebug
(
"sumWinBufferSize=%d, MAXWINBUFFERSIZE=%d"
,
sumWinBufferSize
,
MAXWINBUFFERSIZE
);
xdebug
(
"sumWinBufferSize=%zu, MAXWINBUFFERSIZE=%zu"
,
(
size_t
)
sumWinBufferSize
,
(
size_t
)
MAXWINBUFFERSIZE
);
xassert
(
sumWinBufferSize
<=
MAXWINBUFFERSIZE
);
/* xprintArray("txWin.size", txWin, nProcsColl, DATATYPE_INT); */
xdebug
(
"%s"
,
"RETURN"
);
...
...
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