Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
d0d34f47
Commit
d0d34f47
authored
Sep 08, 2015
by
yb9976
Browse files
Fixed format specifier.
parent
676f9fe2
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/adt/bipartite.c
View file @
d0d34f47
...
...
@@ -133,7 +133,7 @@ void bipartite_matching(bipartite_t const *const gr, int *const matching)
void
bipartite_dump_f
(
FILE
*
const
f
,
bipartite_t
const
*
gr
)
{
for
(
unsigned
i
=
0
;
i
<
gr
->
n_left
;
++
i
)
{
fprintf
(
f
,
"%
d
: "
,
i
);
fprintf
(
f
,
"%
u
: "
,
i
);
bitset_fprint
(
f
,
gr
->
adj
[
i
]);
fprintf
(
f
,
"
\n
"
);
}
...
...
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