From f974422c21ebcc3de2c0a3c530321ba652992ba2 Mon Sep 17 00:00:00 2001 From: Paulo Zanoni Date: Mon, 24 Aug 2015 16:30:04 -0300 Subject: [PATCH] lib/igt_fb: don't forget to close parens on message printed Restore the anxiety levels back to the normal values. Signed-off-by: Paulo Zanoni --- lib/igt_fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index 1234ed92..d04f02c0 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -424,7 +424,7 @@ igt_create_fb_with_bo_size(int fd, int width, int height, bpp = igt_drm_format_to_bpp(format); - igt_debug("%s(width=%d, height=%d, format=0x%x [bpp=%d], tiling=0x%"PRIx64", size=%d\n", + igt_debug("%s(width=%d, height=%d, format=0x%x [bpp=%d], tiling=0x%"PRIx64", size=%d)\n", __func__, width, height, format, bpp, tiling, bo_size); do_or_die(create_bo_for_fb(fd, width, height, bpp, tiling, bo_size, &fb->gem_handle, &fb->size, &fb->stride));