]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/udp.c
h264: K&R formatting cosmetics
[ffmpeg] / libavformat / udp.c
index 66399b7093ff855b49a66f807ec694f5bb9df556..bfa8cf25e8455f1e9b9e39339f69b7d22e6fc755 100644 (file)
@@ -270,7 +270,7 @@ static int udp_socket_create(UDPContext *s, struct sockaddr_storage *addr,
     if (res0 == 0)
         goto fail;
     for (res = res0; res; res=res->ai_next) {
-        udp_fd = socket(res->ai_family, SOCK_DGRAM, 0);
+        udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, 0);
         if (udp_fd != -1) break;
         log_net_error(NULL, AV_LOG_ERROR, "socket");
     }