Skip to content

Commit

Permalink
Merge pull request #9 from drskinner/COV-0051
Browse files Browse the repository at this point in the history
COV-0051: Fix bitvector file writes
  • Loading branch information
Myles Skinner committed Oct 13, 2017
2 parents 07d9d9b + cfe795b commit 42b02d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc.c
Expand Up @@ -1505,7 +1505,7 @@ char *print_bitvector(EXT_BV * bits)
break;
for (x = 0; x <= cnt; x++)
{
snprintf(p, (XBI * 12) - (p - buf), "%ud", bits->bits[x]);
snprintf(p, (XBI * 12) - (p - buf), "%u", bits->bits[x]);
p += strlen(p);
if (x < cnt)
*p++ = '&';
Expand Down

0 comments on commit 42b02d6

Please sign in to comment.