diff mbox series

support: Include <limits.h> for NAME_MAX use in temp_file.c

Message ID 87r0cy8g9d.fsf@oldenburg.str.redhat.com
State New
Headers show
Series support: Include <limits.h> for NAME_MAX use in temp_file.c | expand

Commit Message

Florian Weimer June 15, 2024, 1:52 p.m. UTC
---
 support/temp_file.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/support/temp_file.c b/support/temp_file.c
index 97a7dc2473..28a0043683 100644
--- a/support/temp_file.c
+++ b/support/temp_file.c
@@ -27,6 +27,7 @@ 
 #include <support/support.h>
 
 #include <errno.h>
+#include <limits.h>
 #include <paths.h>
 #include <stdio.h>
 #include <stdlib.h>