commit 535871383c146a1b23a3d75fe77189a0b5b8c110 Author: David Goulet dgoulet@efficios.com Date: Sat Jul 6 22:32:55 2013 -0400
Fix: add missing include in header
Signed-off-by: David Goulet dgoulet@efficios.com --- src/common/ref.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/common/ref.h b/src/common/ref.h index e1ae6d9..aa0cc90 100644 --- a/src/common/ref.h +++ b/src/common/ref.h @@ -18,6 +18,8 @@ #ifndef TORSOCKS_REF_H #define TORSOCKS_REF_H
+#include <assert.h> + struct ref { long count; };