Skip to content

Commit

Permalink
Fix buffer slightly too short for humanize_number() to produce useful
Browse files Browse the repository at this point in the history
output.

Fixes #1162
  • Loading branch information
infracaninophile committed Jan 30, 2015
1 parent fefa048 commit 3bdbed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.c
Expand Up @@ -821,7 +821,7 @@ print_jobs_summary(struct pkg_jobs *jobs, const char *msg, ...)
{
struct pkg *new_pkg, *old_pkg;
void *iter = NULL;
char size[7];
char size[8];
va_list ap;
int type, displayed = 0;
int64_t dlsize, oldsize, newsize;
Expand Down

0 comments on commit 3bdbed6

Please sign in to comment.