diff options
author | Max Horn | 2007-02-18 18:35:11 +0000 |
---|---|---|
committer | Max Horn | 2007-02-18 18:35:11 +0000 |
commit | 3611cc6b4c6d877cf55316cd66008aa82e2956f7 (patch) | |
tree | ced40c17bfa9a9c5fb0e51e8731684fb2cab7843 | |
parent | 94507bb44dc38bfaffc5a293f1160f35f56dd9b7 (diff) | |
download | scummvm-rg350-3611cc6b4c6d877cf55316cd66008aa82e2956f7.tar.gz scummvm-rg350-3611cc6b4c6d877cf55316cd66008aa82e2956f7.tar.bz2 scummvm-rg350-3611cc6b4c6d877cf55316cd66008aa82e2956f7.zip |
Fixed warning
svn-id: r25698
-rw-r--r-- | gui/massadd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/massadd.cpp b/gui/massadd.cpp index 10b72b2639..25a0848378 100644 --- a/gui/massadd.cpp +++ b/gui/massadd.cpp @@ -176,7 +176,7 @@ void MassAddDialog::handleTickle() { // Enable the OK button _okButton->setEnabled(true); - snprintf(buf, sizeof(buf), "Scan complete!", _dirsScanned); + snprintf(buf, sizeof(buf), "Scan complete!"); _dirProgressText->setLabel(buf); snprintf(buf, sizeof(buf), "Discovered %d games.", _games.size()); |