We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d01994a commit c85c4eeCopy full SHA for c85c4ee
src/fu_util/ft_util.h
@@ -34,7 +34,7 @@ typedef SSIZE_T ssize_t;
34
#define ft_gcc_malloc(free, idx) __attribute__((malloc))
35
#endif
36
#define ft_unused __attribute__((unused))
37
-#define ft_gnu_printf(fmt, arg) __attribute__((format(printf,fmt,arg)))
+#define ft_gnu_printf(fmt, arg) __attribute__((format(gnu_printf,fmt,arg)))
38
#define ft_likely(x) __builtin_expect(!!(x), 1)
39
#define ft_unlikely(x) __builtin_expect(!!(x), 0)
40
#define ft_always_inline __attribute__((always_inline))
0 commit comments