From a02580dae4212236f1f0ce249ebc68c1a2f352e1 Mon Sep 17 00:00:00 2001 From: Moonchild Date: Mon, 18 May 2026 12:41:20 +0200 Subject: [PATCH] Fix incorrect variadic for `size_t` in `fprintf` statement in `hyphen.c`. --- intl/hyphenation/hyphen/hyphen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intl/hyphenation/hyphen/hyphen.c b/intl/hyphenation/hyphen/hyphen.c index 9f2b7112c8..bd7e9a790c 100644 --- a/intl/hyphenation/hyphen/hyphen.c +++ b/intl/hyphenation/hyphen/hyphen.c @@ -446,7 +446,7 @@ for (k = 0; k < 2; k++) { while ((c = fgetc(f)) != '\n' && c != EOF); /* issue warning if not a comment */ if (buf[0] != '%') { - fprintf(stderr, "Warning: skipping too long pattern (more than %lu chars)\n", sizeof(buf)); + fprintf(stderr, "Warning: skipping too long pattern (more than %zu chars)\n", sizeof(buf)); } continue; }