Fix bad printf in geometry logging

This commit is contained in:
o9000 2016-07-10 18:42:24 +02:00
parent d95a5a02cf
commit d3f16e00b5

View file

@ -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,