blob: b7e5710b391c2ea7d61bc7ab296f751a078f9980 [file] [log] [blame]
From eb66326c3fc6e942282d01ddd56659c78ed7400b Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Fri, 13 Jan 2023 13:21:51 -0800
Subject: [PATCH] include rpm/rpmstring.h
Its needed for rasprintf declaration
Fixes
src/xml_file.c:341:36: error: call to undeclared functi
on 'rasprintf'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Upstream-Status: Submitted [https://github.com/rpm-software-management/createrepo_c/pull/340]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/xml_file.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/xml_file.c b/src/xml_file.c
index d2400b8..871109c 100644
--- a/src/xml_file.c
+++ b/src/xml_file.c
@@ -19,6 +19,7 @@
#include <glib.h>
#include <glib/gstdio.h>
+#include <rpm/rpmstring.h>
#include <assert.h>
#include <rpm/rpmstring.h>
#include "xml_file.h"