diff --git a/src/torrentcreator/createtorrent.ui b/src/torrentcreator/createtorrent.ui
index 9a31ae4e0..cbda85e75 100644
--- a/src/torrentcreator/createtorrent.ui
+++ b/src/torrentcreator/createtorrent.ui
@@ -124,7 +124,7 @@
- You can separate tracker tiers with newlines
+ You can separate tracker tiers / groups with an empty line.
false
diff --git a/src/torrentcreator/torrentcreatorthread.cpp b/src/torrentcreator/torrentcreatorthread.cpp
index 84553b50d..ee238899e 100644
--- a/src/torrentcreator/torrentcreatorthread.cpp
+++ b/src/torrentcreator/torrentcreatorthread.cpp
@@ -113,7 +113,7 @@ void TorrentCreatorThread::run() {
foreach (const QString &seed, url_seeds) {
t.add_url_seed(seed.trimmed().toStdString());
}
- qint32 tier = 0;
+ int tier = 0;
bool newline = false;
foreach (const QString &tracker, trackers) {
if (tracker.isEmpty()) {