Message ID | 20241215104508.191237-18-geert@linux-m68k.org |
---|---|
State | New |
Headers | show |
Series | Export feature and large ellipses support | expand |
diff --git a/include/util.h b/include/util.h index 5a6b5ab40d383d5a..1433b87b8dbefcfc 100644 --- a/include/util.h +++ b/include/util.h @@ -40,7 +40,7 @@ extern void Warning(const char *fmt, ...) extern void Error(const char *fmt, ...) __attribute__ ((format (printf, 1, 2))); extern void Fatal(const char *fmt, ...) - __attribute__ ((noreturn)) __attribute ((format (printf, 1, 2))); + __attribute__ ((noreturn)) __attribute__ ((format (printf, 1, 2))); extern void Debug(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
Replace the rare __attribute by the more common __attribute__. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> --- include/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)