From 9617033a3a3229daabe17e38fbab802ec2e6e223 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Tue, 30 Apr 2024 15:22:15 -0400 Subject: [PATCH] tests: convert pretty_xml.c to C++ MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I40e0aa849193e789bf6634068a92b55484ab17af Signed-off-by: Simon Marchi Signed-off-by: Jérémie Galarneau --- tests/utils/xml-utils/Makefile.am | 2 +- tests/utils/xml-utils/{pretty_xml.c => pretty_xml.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/utils/xml-utils/{pretty_xml.c => pretty_xml.cpp} (100%) diff --git a/tests/utils/xml-utils/Makefile.am b/tests/utils/xml-utils/Makefile.am index 7997d94e1..eec519d31 100644 --- a/tests/utils/xml-utils/Makefile.am +++ b/tests/utils/xml-utils/Makefile.am @@ -9,7 +9,7 @@ extract_xml_SOURCES = extract_xml.cpp extract_xml_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS) extract_xml_LDADD = $(libxml2_LIBS) -pretty_xml_SOURCES = pretty_xml.c +pretty_xml_SOURCES = pretty_xml.cpp pretty_xml_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS) pretty_xml_LDADD = $(libxml2_LIBS) diff --git a/tests/utils/xml-utils/pretty_xml.c b/tests/utils/xml-utils/pretty_xml.cpp similarity index 100% rename from tests/utils/xml-utils/pretty_xml.c rename to tests/utils/xml-utils/pretty_xml.cpp -- 2.34.1