From 8326cebf5cc4f1fcb5dd90acfc05b7ac6ce2a0b0 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 11 Dec 2008 20:49:21 +0000 Subject: [PATCH] - Fix for compiling with mingw32 (By Attila Olah) --- src/createtorrent_imp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/createtorrent_imp.cpp b/src/createtorrent_imp.cpp index 59d0947c6..b5ef64113 100644 --- a/src/createtorrent_imp.cpp +++ b/src/createtorrent_imp.cpp @@ -245,7 +245,7 @@ void torrentCreatorThread::run() { } if(abort) return; // calculate the hash for all pieces - set_piece_hashes(t, full_path.branch_path(), boost::bind(&sendProgressUpdateSignal, _1, t.num_pieces(), parent)); + set_piece_hashes(t, full_path.branch_path(), boost::bind(&sendProgressUpdateSignal, _1, t.num_pieces(), parent)); // Set qBittorrent as creator and add user comment to // torrent_info structure t.set_creator(creator_str);