From ca8dc576cd8a820b0e6890e75376920f8111716f Mon Sep 17 00:00:00 2001 From: YiFang Xiao Date: Sun, 14 May 2023 11:31:21 +0800 Subject: [PATCH] fix:code smell --- src/config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cc b/src/config.cc index dd7fe1df..a317d680 100644 --- a/src/config.cc +++ b/src/config.cc @@ -199,7 +199,7 @@ InputPhrase Preferences::sanitizeInputPhrase( QString const & inputPhrase ) cons if( limitInputPhraseLength && _phase.size() > inputPhraseLengthLimit ) { - gdDebug( "Ignoring an input phrase %d symbols long. The configured maximum input phrase length is %d symbols.", + gdDebug( "Ignoring an input phrase %lld symbols long. The configured maximum input phrase length is %d symbols.", _phase.size(), inputPhraseLengthLimit ); return result; }