From: Seven Du Date: Tue, 16 Sep 2014 11:15:01 +0000 (+0800) Subject: bytes is signed X-Git-Tag: v1.4.8~1^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36addd5b6147e0fd865354a20e644d28234be5ab;p=thirdparty%2Ffreeswitch.git bytes is signed --- diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index 5586e55d1e..9ab74cd071 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -1716,7 +1716,7 @@ static void client_run(jsock_t *jsock) bytes = ws_read_frame(&jsock->ws, &oc, &data); if (bytes < 0) { - die("BAD READ %" SWITCH_SIZE_T_FMT "\n", bytes); + die("BAD READ %" SWITCH_SSIZE_T_FMT "\n", bytes); break; }