aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorJohannes Schickel2010-06-15 23:45:13 +0000
committerJohannes Schickel2010-06-15 23:45:13 +0000
commit81926f106abce4d73a899962a7a1f3fd0307ff40 (patch)
tree5ea378ae45628cf50bae19b1fb2bae4ea0db3885 /gui
parent444a6b5976f1f5b41db1db94ae16a8987fff134c (diff)
downloadscummvm-rg350-81926f106abce4d73a899962a7a1f3fd0307ff40.tar.gz
scummvm-rg350-81926f106abce4d73a899962a7a1f3fd0307ff40.tar.bz2
scummvm-rg350-81926f106abce4d73a899962a7a1f3fd0307ff40.zip
Fix g++ warning "format not a string literal and no format arguments".
svn-id: r49896
Diffstat (limited to 'gui')
-rw-r--r--gui/massadd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/massadd.cpp b/gui/massadd.cpp
index b981520cdc..7a597085c5 100644
--- a/gui/massadd.cpp
+++ b/gui/massadd.cpp
@@ -241,7 +241,7 @@ void MassAddDialog::handleTickle() {
// Enable the OK button
_okButton->setEnabled(true);
- snprintf(buf, sizeof(buf), _("Scan complete!"));
+ snprintf(buf, sizeof(buf), "%s", _("Scan complete!"));
_dirProgressText->setLabel(buf);
snprintf(buf, sizeof(buf), _("Discovered %d new games."), _games.size());