From 96e34b80b216da88a44cf0741f5b4a6863ff14d0 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 1 Dec 2008 07:01:53 +0000 Subject: [PATCH] added missing string in state_change_alert --- include/libtorrent/alert_types.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/libtorrent/alert_types.hpp b/include/libtorrent/alert_types.hpp index 97641a10b..664b98052 100644 --- a/include/libtorrent/alert_types.hpp +++ b/include/libtorrent/alert_types.hpp @@ -211,7 +211,8 @@ namespace libtorrent { static char const* state_str[] = {"checking (q)", "checking", "dl metadata" - , "downloading", "finished", "seeding", "allocating"}; + , "downloading", "finished", "seeding", "allocating" + , "checking (r)"}; return torrent_alert::message() + ": state changed to: " + state_str[state];