From 54f3008a1e65ff20fa51b0fc8e31bd29f07ca75f Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Wed, 21 May 2025 14:35:13 +0200 Subject: [PATCH] pretty-print: Add missing fileio.h include LONG_LINE_MAX comes from fileio.h and is used in pretty-print.h so pretty-print.h should include it. --- src/shared/pretty-print.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/pretty-print.h b/src/shared/pretty-print.h index 6f449550765..e64eed5a9f1 100644 --- a/src/shared/pretty-print.h +++ b/src/shared/pretty-print.h @@ -5,6 +5,7 @@ #include "ansi-color.h" #include "assert-util.h" +#include "fileio.h" #include "glyph-util.h" #include "terminal-util.h" -- 2.47.3