From 96c688157362ed63368023023fc79a1f8d4e42da Mon Sep 17 00:00:00 2001 From: RickyRister Date: Thu, 12 Dec 2024 08:40:14 -0800 Subject: [PATCH] remove space --- cockatrice/src/game/filters/filter_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/game/filters/filter_string.cpp b/cockatrice/src/game/filters/filter_string.cpp index 4e965ced5..d87e8b039 100644 --- a/cockatrice/src/game/filters/filter_string.cpp +++ b/cockatrice/src/game/filters/filter_string.cpp @@ -365,7 +365,7 @@ FilterString::FilterString(const QString &expr) }; if (!search.parse(ba.data(), result)) { - qDebug() << "Filter string error for" << expr << ";" << _error; + qDebug().nospace() << "FilterString error for " << expr << "; " << _error; result = [](CardData) -> bool { return false; }; } }