Fix wrong format string type in send_sptps_tcppacket().
authorEtienne Dechamps <etienne@edechamps.fr>
Sun, 24 May 2015 08:45:09 +0000 (09:45 +0100)
committerEtienne Dechamps <etienne@edechamps.fr>
Sun, 24 May 2015 08:45:09 +0000 (09:45 +0100)
commit7fcfbe2bd2d14d13e06e3e2addfe0ea12b67873f
treebf66f2a1ff60613a83f92bb042ea87f24da9c097
parent3e61c7233b087b8400c29ca7a8d079aad8b706d8
Fix wrong format string type in send_sptps_tcppacket().

This issue was found through a clang-3.7 warning:

protocol_misc.c:167:46: error: format specifies type 'short' but the argument has type 'int'
      [-Werror,-Wformat]
        if(!send_request(c, "%d %hd", SPTPS_PACKET, len))
                                ~~~                 ^~~
                                %d
src/protocol_misc.c