Skip to content

Commit c85c4ee

Browse files
committed
fu_util
1 parent d01994a commit c85c4ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fu_util/ft_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ typedef SSIZE_T ssize_t;
3434
#define ft_gcc_malloc(free, idx) __attribute__((malloc))
3535
#endif
3636
#define ft_unused __attribute__((unused))
37-
#define ft_gnu_printf(fmt, arg) __attribute__((format(printf,fmt,arg)))
37+
#define ft_gnu_printf(fmt, arg) __attribute__((format(gnu_printf,fmt,arg)))
3838
#define ft_likely(x) __builtin_expect(!!(x), 1)
3939
#define ft_unlikely(x) __builtin_expect(!!(x), 0)
4040
#define ft_always_inline __attribute__((always_inline))

0 commit comments

Comments
 (0)