Fix bad printf in geometry logging
This commit is contained in:
parent
d95a5a02cf
commit
d3f16e00b5
1 changed files with 2 additions and 2 deletions
|
@ -443,7 +443,7 @@ void execp_dump_geometry(void *obj, int indent)
|
|||
Imlib_Image tmp = imlib_context_get_image();
|
||||
imlib_context_set_image(execp->backend->icon);
|
||||
fprintf(stderr,
|
||||
"%*sIcon: x = %d, y = %d, w = %d\n",
|
||||
"%*sIcon: x = %d, y = %d, w = %d, h = %d\n",
|
||||
indent,
|
||||
"",
|
||||
execp->frontend->iconx,
|
||||
|
@ -454,7 +454,7 @@ void execp_dump_geometry(void *obj, int indent)
|
|||
imlib_context_set_image(tmp);
|
||||
}
|
||||
fprintf(stderr,
|
||||
"%*sText: x = %d, y = %d, w = %d, h = %d, align = %s, text = %s\n",
|
||||
"%*sText: x = %d, y = %d, w = %d, align = %s, text = %s\n",
|
||||
indent,
|
||||
"",
|
||||
execp->frontend->textx,
|
||||
|
|
Loading…
Reference in a new issue