r300: remove extra newline for compiler errors

This is now propagated to the linker which also adds one.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41577>
This commit is contained in:
Pavel Ondračka 2025-03-15 20:16:09 +01:00 committed by Marge Bot
parent 2d56ccbfe0
commit 90f2f4d626

View file

@ -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 {