rakshasa / libtorrent

libTorrent BitTorrent library
http://rtorrent.net/downloads/
GNU General Public License v2.0
892 stars 209 forks source link

log: Fix format so GCC can check it #205

Closed neheb closed 4 years ago

neheb commented 4 years ago

const char *fmt is a variable, not a constant expression (it's not even constant).

Change to a define so GCC can check it properly.

I tried doing cute things with constexpr to avoid having a define, but everything I tried failed.

edit: This fixes -Werror=format=2