summaryrefslogtreecommitdiff
path: root/src/ivyfifo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ivyfifo.h')
-rw-r--r--src/ivyfifo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ivyfifo.h b/src/ivyfifo.h
index 14d0106..148d2b5 100644
--- a/src/ivyfifo.h
+++ b/src/ivyfifo.h
@@ -22,13 +22,13 @@ unsigned int IvyFifoSize(const IvyFifoBuffer *f);
unsigned int IvyFifoAvail(const IvyFifoBuffer *f);
-unsigned int IvyFifoRead(IvyFifoBuffer *f, char *buf, int buf_size);
+unsigned int IvyFifoRead(IvyFifoBuffer *f, char *buf, unsigned int buf_size);
unsigned int IvyFifoSendSocket (IvyFifoBuffer *f, const int fd);
int IvyFifoIsFull (const IvyFifoBuffer *f) ;
-void IvyFifoWrite(IvyFifoBuffer *f, const char *buf, int size);
+void IvyFifoWrite(IvyFifoBuffer *f, const char *buf, unsigned int size);