Browse Source

- Suppress another valgrind warning

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
b64919234a
  1. 2
      src/geoip.h

2
src/geoip.h

@ -213,7 +213,7 @@ public: @@ -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();
}
};

Loading…
Cancel
Save