[vlc-commits] sout:sap: the sa_family is a short unsigned integer

Steve Lhomme git at videolan.org
Wed Jul 11 15:35:32 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 15:32:13 2018 +0200| [fcf363057f0f7a22bc2086e1b3f1b69aec667ac7] | committer: Steve Lhomme

sout:sap: the sa_family is a short unsigned integer

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fcf363057f0f7a22bc2086e1b3f1b69aec667ac7
---

 src/stream_output/sap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/stream_output/sap.c b/src/stream_output/sap.c
index f7da040896..68639eba5a 100644
--- a/src/stream_output/sap.c
+++ b/src/stream_output/sap.c
@@ -260,7 +260,7 @@ sout_AnnounceRegisterSDP (vlc_object_t *obj, const char *sdp,
         }
 
         default:
-            msg_Err (obj, "Address family %d not supported by SAP",
+            msg_Err (obj, "Address family %hu not supported by SAP",
                      addr.a.sa_family);
             return NULL;
     }



More information about the vlc-commits mailing list