From c1193e81f0b97b36addf0c977928d2607cfbce10 Mon Sep 17 00:00:00 2001 From: Bernhard Froehlich Date: Sun, 5 May 2013 14:49:47 +0200 Subject: [PATCH] Add missing include for ssize_t on FreeBSD. 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tvhlog.h b/src/tvhlog.h index cc4b3011..f657df24 100644 --- a/src/tvhlog.h +++ b/src/tvhlog.h @@ -18,6 +18,7 @@ #ifndef __TVH_LOGGING_H__ #define __TVH_LOGGING_H__ +#include #include #include #include