From d115b6fc8ba7ab296b799fd649bd1b3c036164f4 Mon Sep 17 00:00:00 2001 From: Syping Date: Sun, 25 Oct 2020 03:33:30 +0100 Subject: [PATCH] minor string fix --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 5eb42ac..1e5efee 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -36,7 +36,7 @@ int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); a.setApplicationName("checkbrute"); - a.setApplicationVersion("0.2"); + a.setApplicationVersion("0.2.1"); QCommandLineParser commandLineParser; commandLineParser.addHelpOption(); @@ -121,7 +121,7 @@ int main(int argc, char *argv[]) if (versionFunc) version = QString::fromUtf8(versionFunc()); checksum_map[format] = new checksum_lib(formatFunc, hash64Func, hashSzFunc); - QTextStream(stderr) << "INFO: " << format << " Plugin " << fileName << " loaded" << Qt::endl; + QTextStream(stderr) << "INFO: " << format << " plugin " << fileName << " loaded" << Qt::endl; } else { QTextStream(stderr) << "WARNING: Failed loading plugin " << fileName << "!" << Qt::endl;