summaryrefslogtreecommitdiff
path: root/src/torrent.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-05-11 09:21:11 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-05-11 09:21:11 +0000
commit665e231ceb850f86ceedf80cdb6d13cca52671bf (patch)
tree0e199da108f72aac5a5b5ce4090b1a86db0d3389 /src/torrent.c
parentb0ede16ee68023844bd7633e5ebdc7a134225b07 (diff)
put the destination combo into its own class, changing from the deprecated combo_box_entry_new_text or whatever it is and using it in torrent move dialog also.
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 032e9b7..1d3d247 100644
--- a/src/torrent.c
+++ b/src/torrent.c
@@ -227,7 +227,7 @@ gboolean torrent_has_tracker(JsonObject * t, GRegex * rx, gchar * search)
GList *li;
for (li = trackers; li; li = g_list_next(li)) {
- JsonObject *tracker = json_node_get_object((JsonNode*)li->data);
+ JsonObject *tracker = json_node_get_object((JsonNode *) li->data);
const gchar *trackerAnnounce = tracker_get_announce(tracker);
gchar *trackerAnnounceHost =
trg_gregex_get_first(rx, trackerAnnounce);