Skip to content
GitLab
Menu
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
1806c5c1
Commit
1806c5c1
authored
Jul 25, 2012
by
Thomas Jahns
🤸
Browse files
Use C99 size_t format directive.
parent
473c62e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pio_posixfpguardsendrecv.c
View file @
1806c5c1
...
@@ -338,9 +338,8 @@ writePF(aFiledataPF *afd, int id)
...
@@ -338,9 +338,8 @@ writePF(aFiledataPF *afd, int id)
xmpi
(
MPI_Sendrecv
(
&
amountL
,
1
,
MPI_LONG
,
specialRank
,
tag
,
xmpi
(
MPI_Sendrecv
(
&
amountL
,
1
,
MPI_LONG
,
specialRank
,
tag
,
&
offset
,
1
,
MPI_LONG
,
specialRank
,
tag
,
&
offset
,
1
,
MPI_LONG
,
specialRank
,
tag
,
commNode
,
&
status
));
commNode
,
&
status
));
xdebug
(
"id=%d, command=%d, amount=%llu, send amountL=%ld, recv offset=%ld"
,
xdebug
(
"id=%d, command=%d, amount=%zu, send amountL=%ld, recv offset=%ld"
,
id
,
afd
->
command
,
(
unsigned
long
long
)
amount
,
id
,
afd
->
command
,
amount
,
amountL
,
offset
);
amountL
,
offset
);
/* write buffer */
/* write buffer */
...
@@ -353,9 +352,8 @@ writePF(aFiledataPF *afd, int id)
...
@@ -353,9 +352,8 @@ writePF(aFiledataPF *afd, int id)
xabort
(
"fileId=%d, expect to write %zu byte, written %zu byte"
,
xabort
(
"fileId=%d, expect to write %zu byte, written %zu byte"
,
id
,
amount
,
written
);
id
,
amount
,
written
);
xdebug
(
"written %llu bytes in file %d with offset %ld"
,
xdebug
(
"written %zu bytes in file %d with offset %ld"
,
(
unsigned
long
long
)
written
,
written
,
id
,
offset
);
id
,
offset
);
/* change outputBuffer */
/* change outputBuffer */
...
...
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