use C99 string formatting macros for platform independence
This commit is contained in:
@@ -381,7 +381,7 @@ namespace libtorrent
|
||||
case lazy_entry::int_t:
|
||||
{
|
||||
char str[100];
|
||||
snprintf(str, sizeof(str), "%lld", e.int_value());
|
||||
snprintf(str, sizeof(str), "%"PRId64, e.int_value());
|
||||
return str;
|
||||
}
|
||||
case lazy_entry::string_t:
|
||||
|
Reference in New Issue
Block a user