From 90f2f4d62690cc76c97da711c8aa8494752dbc63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Ondra=C4=8Dka?= Date: Sat, 15 Mar 2025 20:16:09 +0100 Subject: [PATCH] r300: remove extra newline for compiler errors This is now propagated to the linker which also adds one. Part-of: --- src/gallium/drivers/r300/compiler/r500_fragprog_emit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c b/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c index b96facc1e6f..0968131f6e5 100644 --- a/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c +++ b/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c @@ -25,9 +25,9 @@ #define PROG_CODE struct r500_fragment_program_code *code = &c->code->code.r500 -#define error(fmt, args...) \ - do { \ - rc_error(&c->Base, "%s::%s(): " fmt "\n", __FILE__, __func__, ##args); \ +#define error(fmt, args...) \ + do { \ + rc_error(&c->Base, "%s::%s(): " fmt, __FILE__, __func__, ##args); \ } while (0) struct branch_info {