From 4369b67c7ee24f94a8af03257d5b6196d62d4d76 Mon Sep 17 00:00:00 2001 From: Gavin Halliday Date: Tue, 21 Nov 2023 12:50:06 +0000 Subject: [PATCH] HPCC-30898 Resolve build errors with ubuntu 23.10 Signed-off-by: Gavin Halliday --- ecl/hql/hqlgram2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecl/hql/hqlgram2.cpp b/ecl/hql/hqlgram2.cpp index 8d906ad57f0..26bf61e3ff0 100644 --- a/ecl/hql/hqlgram2.cpp +++ b/ecl/hql/hqlgram2.cpp @@ -9689,11 +9689,11 @@ void HqlGram::checkDerivedCompatible(IIdAtom * name, IHqlExpression * scope, IHq if (match) { if (!canBeVirtual(match)) - reportError(ERR_MISMATCH_PROTO, errpos, "Definition %s, cannot override this kind of definition", str(name)); + reportError(ERR_MISMATCH_PROTO, errpos, "Definition %s, cannot override this kind of definition", nullText(str(name))); else { if (!areSymbolsCompatible(expr, isParametered, parameters, match)) - reportError(ERR_MISMATCH_PROTO, errpos, "Prototypes for %s in base and derived modules must match", str(name)); + reportError(ERR_MISMATCH_PROTO, errpos, "Prototypes for %s in base and derived modules must match", nullText(str(name))); } } }