summaryrefslogtreecommitdiff
path: root/src/torrent.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-20 07:27:32 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-20 07:27:32 +0000
commit4f49e799327b55be29028c392a8a8ee4ed921c83 (patch)
treee3cb8e4e380632a6af94768e82b1c5eed442ae38 /src/torrent.c
parent57e72b33977d864863b90c893c913eb268e2f997 (diff)
use the gint64 format specifier %li, not %ld (long). hopefully silence the last remaining compiler warnings that I've seen (only on 32bit).
Diffstat (limited to 'src/torrent.c')
-rw-r--r--src/torrent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/torrent.c b/src/torrent.c
index 784668f..ed1a232 100644
--- a/src/torrent.c
+++ b/src/torrent.c
@@ -310,7 +310,7 @@ gchar *torrent_get_status_string(gint64 rpcv, gint64 value)
}
}
- //g_warning("Unknown status: %ld", value);
+ //g_warning("Unknown status: %li", value);
return g_strdup(_("Unknown"));
}