From 44925a8a5547ba63a755668dfa947052f525ac8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20=C5=9Alusarz?= Date: Wed, 4 Nov 2020 19:15:51 +0100 Subject: [PATCH] intel/tools: add missing new lines to few remaining fail_if users MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Ĺšlusarz Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/tools/intel_dump_gpu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/intel/tools/intel_dump_gpu.c b/src/intel/tools/intel_dump_gpu.c index a4b7d41b66f..281d5bf7ce5 100644 --- a/src/intel/tools/intel_dump_gpu.c +++ b/src/intel/tools/intel_dump_gpu.c @@ -446,15 +446,15 @@ maybe_init(int fd) verbose = 2; } } else if (!strcmp(key, "device")) { - fail_if(device != 0, "Device/Platform override specified multiple times."); + fail_if(device != 0, "Device/Platform override specified multiple times.\n"); fail_if(sscanf(value, "%i", &device) != 1, - "failed to parse device id '%s'", + "failed to parse device id '%s'\n", value); device_override = true; } else if (!strcmp(key, "platform")) { - fail_if(device != 0, "Device/Platform override specified multiple times."); + fail_if(device != 0, "Device/Platform override specified multiple times.\n"); device = gen_device_name_to_pci_device_id(value); - fail_if(device == -1, "Unknown platform '%s'", value); + fail_if(device == -1, "Unknown platform '%s'\n", value); device_override = true; } else if (!strcmp(key, "file")) { output_filename = strdup(value);