diff mbox series

[fbtest,17/17] util: Use __attribute__

Message ID 20241215104508.191237-18-geert@linux-m68k.org
State New
Headers show
Series Export feature and large ellipses support | expand

Commit Message

Geert Uytterhoeven Dec. 15, 2024, 10:45 a.m. UTC
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(-)
diff mbox series

Patch

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)));