]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Add missing include for ssize_t on FreeBSD.
authorBernhard Froehlich <decke@bluelife.at>
Sun, 5 May 2013 12:49:47 +0000 (14:49 +0200)
committerUser Decke <decke@bluelife.at>
Wed, 8 May 2013 13:19:45 +0000 (15:19 +0200)
src/tvhlog.h:48: error: expected declaration specifiers or '...' before 'ssize_t'
src/tvhlog.c:244: error: conflicting types for '_tvhlog_hexdump'
src/tvhlog.h:48: error: previous declaration of '_tvhlog_hexdump' was here

src/tvhlog.h

index cc4b301178b2dfdaedd1aaf9394d2875cf91045c..f657df24ab94be6211a8eb71ba003e528e3af591 100644 (file)
@@ -18,6 +18,7 @@
 #ifndef __TVH_LOGGING_H__
 #define __TVH_LOGGING_H__
 
+#include <sys/types.h>
 #include <sys/syslog.h>
 #include <pthread.h>
 #include <stdarg.h>