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:
parent
efcc519458
commit
6ae48322ed
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user