From bed541b04e88fea5e9317ece34ed887db09a5bc0 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sun, 24 Mar 2024 00:16:16 +0100 Subject: [PATCH] error.cc: Make printTrace static --- src/libutil/error.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/error.cc b/src/libutil/error.cc index fa7dadb27..e9c6437cd 100644 --- a/src/libutil/error.cc +++ b/src/libutil/error.cc @@ -163,7 +163,7 @@ static bool printPosMaybe(std::ostream & oss, std::string_view indent, const std return hasPos; } -void printTrace( +static void printTrace( std::ostream & output, const std::string_view & indent, size_t & count,