diff tcp.c @ 65:a58a8a53eb46 libavformat

* UINTX -> uintx_t INTX -> intx_t
author kabi
date Tue, 11 Feb 2003 16:35:48 +0000
parents 05318cf2e886
children 9e673f620f4d
line wrap: on
line diff
--- a/tcp.c	Mon Feb 10 09:35:32 2003 +0000
+++ b/tcp.c	Tue Feb 11 16:35:48 2003 +0000
@@ -100,7 +100,7 @@
     return -EIO;
 }
 
-static int tcp_read(URLContext *h, UINT8 *buf, int size)
+static int tcp_read(URLContext *h, uint8_t *buf, int size)
 {
     TCPContext *s = h->priv_data;
     int size1, len;
@@ -130,7 +130,7 @@
     return size1 - size;
 }
 
-static int tcp_write(URLContext *h, UINT8 *buf, int size)
+static int tcp_write(URLContext *h, uint8_t *buf, int size)
 {
     TCPContext *s = h->priv_data;
     int ret, size1;