diff udp.c @ 65:a58a8a53eb46 libavformat

* UINTX -> uintx_t INTX -> intx_t
author kabi
date Tue, 11 Feb 2003 16:35:48 +0000
parents 56a6676125b4
children e01949598794
line wrap: on
line diff
--- a/udp.c	Mon Feb 10 09:35:32 2003 +0000
+++ b/udp.c	Tue Feb 11 16:35:48 2003 +0000
@@ -208,7 +208,7 @@
     return -EIO;
 }
 
-static int udp_read(URLContext *h, UINT8 *buf, int size)
+static int udp_read(URLContext *h, uint8_t *buf, int size)
 {
     UDPContext *s = h->priv_data;
     struct sockaddr_in from;
@@ -228,7 +228,7 @@
     return len;
 }
 
-static int udp_write(URLContext *h, UINT8 *buf, int size)
+static int udp_write(URLContext *h, uint8_t *buf, int size)
 {
     UDPContext *s = h->priv_data;
     int ret;