font: fix trailing newline in debug message

log_* appends newline automatically so remove it from the debug message.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-05-17 14:44:50 +02:00
parent efcc519458
commit 6ae48322ed

View File

@ -408,7 +408,7 @@ static int face_measure(struct font_face *face)
face->width = width / num;
face->height = asc + desc;
log_debug("width/height is %ux%u\n", face->width, face->height);
log_debug("width/height is %ux%u", face->width, face->height);
return 0;
}