added missing string in state_change_alert

This commit is contained in:
Arvid Norberg
2008-12-01 07:01:53 +00:00
parent 4b738fca7a
commit 96e34b80b2

View File

@@ -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];