summaryrefslogtreecommitdiff
path: root/src/trg-torrent-model.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2012-09-01 16:52:05 +0100
committerGravatar Alan Fitton <ajf@eth0.org.uk>2012-09-01 16:52:05 +0100
commitde8e58c293aba8f9e41d958770b9a8e62a5866f6 (patch)
treeafe003a59860e11d9ce1a6f0b1542fd432b16e3d /src/trg-torrent-model.c
parent53222b1c536bdb612e15cccd60dcadf6b4ac3957 (diff)
mismatch of gint64 and guint, maybe causing crash on 32bit.
Diffstat (limited to 'src/trg-torrent-model.c')
-rw-r--r--src/trg-torrent-model.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/trg-torrent-model.c b/src/trg-torrent-model.c
index 5142f31..3660240 100644
--- a/src/trg-torrent-model.c
+++ b/src/trg-torrent-model.c
@@ -434,7 +434,8 @@ update_torrent_iter(TrgTorrentModel * model,
JsonArray *trackerStats;
gchar *statusString, *statusIcon, *downloadDir;
gint64 downRate, upRate, haveValid, uploaded, downloaded, id, status,
- lpd, fileCount;
+ lpd;
+ guint fileCount;
gchar *firstTrackerHost = NULL;
gchar *peerSources = NULL;
gchar *lastDownloadDir = NULL;