From: Caleb Callaway Date: Thu, 20 Aug 2020 00:12:10 +0000 (-0700) Subject: iris: Add missing newline to debug log message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3dd1a81aa0e5389659826d9ab6327e3091a24552;p=mesa.git iris: Add missing newline to debug log message Without this newline, log messages get lumped together on a single line, making the debug log difficult to read. Reviewed-by: Mark Janes Part-of: --- diff --git a/src/gallium/drivers/iris/iris_clear.c b/src/gallium/drivers/iris/iris_clear.c index 3d60c6bfbe3..cf0699726fd 100644 --- a/src/gallium/drivers/iris/iris_clear.c +++ b/src/gallium/drivers/iris/iris_clear.c @@ -44,7 +44,7 @@ iris_is_color_fast_clear_compatible(struct iris_context *ice, const struct gen_device_info *devinfo = &batch->screen->devinfo; if (isl_format_has_int_channel(format)) { - perf_debug(&ice->dbg, "Integer fast clear not enabled for %s", + perf_debug(&ice->dbg, "Integer fast clear not enabled for %s\n", isl_format_get_name(format)); return false; }