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 <mark.a.janes@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6413>
This commit is contained in:
Caleb Callaway 2020-08-19 17:12:10 -07:00
parent fb525ada14
commit 3dd1a81aa0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}