mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-12 18:01:14 +01:00
Fix some compiler warnings:
boxes.c:1024:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘size_t {aka long unsigned int}’ [-Wformat=] Signed-off-by: Stephen M. Cameron <stephenmcameron@gmail.com>
This commit is contained in:
parent
d981796d6d
commit
e631886c56
@ -1022,7 +1022,7 @@ static int list_styles()
|
||||
}
|
||||
|
||||
fprintf (opt.outfile, "Minimum Box Dimensions: %d x %d (width x height)\n",
|
||||
d->minwidth, d->minheight);
|
||||
(int) d->minwidth, (int) d->minheight);
|
||||
|
||||
fprintf (opt.outfile, "Default Padding: ");
|
||||
if (d->padding[BTOP] || d->padding[BRIG]
|
||||
|
Loading…
Reference in New Issue
Block a user