From: Daan De Meyer Date: Wed, 21 May 2025 12:35:13 +0000 (+0200) Subject: pretty-print: Add missing fileio.h include X-Git-Tag: v258-rc1~551 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54f3008a1e65ff20fa51b0fc8e31bd29f07ca75f;p=thirdparty%2Fsystemd.git 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. --- 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"