From 995c1cdbb118c3922e595204349b1152b90ecd2a Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Thu, 28 Jun 2007 00:04:42 +0000 Subject: [PATCH] fix r2210 oops --- libtransmission/torrent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index cdbef4b6f..7014b9700 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -305,7 +305,7 @@ tr_torrentInit( tr_handle_t * h, int val; tr_torrent_t * tor = NULL; - if(( val = tr_torrentParse( h, destination, path, NULL ))) + if(( val = tr_torrentParse( h, path, destination, NULL ))) *error = val; else if(!(( tor = tr_new0( tr_torrent_t, 1 )))) *error = TR_EOTHER;