From b64919234a48fcd3baba955994348165c8cd51aa Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 18 Nov 2009 18:00:17 +0000 Subject: [PATCH] - Suppress another valgrind warning --- src/geoip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geoip.h b/src/geoip.h index d0fafca6c..34d5fe943 100644 --- a/src/geoip.h +++ b/src/geoip.h @@ -213,7 +213,7 @@ public: if(iso[1] == 'A') return QIcon(":/Icons/flags/south_africa.png"); break; } - qDebug("Unrecognized country code: %s", iso); + qDebug("Unrecognized country code: %c%c", iso[0], iso[1]); return QIcon(); } };