libbvg icon indicating copy to clipboard operation
libbvg copied to clipboard

Broken example in README

Open spth opened this issue 8 years ago • 0 comments

The example in the README has the following line:

printf("node %i has degree %d\n", git.curr);

There are two conversion specifiers (%i and %d) in the call to printf(), but there is only one parameter corresponding to a conversion specifier. Furthermore, both %i and %d expect arguments of type int, but the one argument is of type int64_t.

Philipp

spth avatar Jun 21 '17 13:06 spth