diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2010-07-17 17:16:48 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2010-07-17 17:16:48 +0000 |
commit | 547da832ba0725580daf4f8fd152591d230b32e8 (patch) | |
tree | 8ed0292e3acc6aafa01aff03624911d57e5577e0 | |
parent | 18a3925efbd0d2e8e266a5dcfd2f65c365265970 (diff) |
add missing header needed by event_warn()
ok nicm@
-rw-r--r-- | lib/libevent/buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libevent/buffer.c b/lib/libevent/buffer.c index 8a3b9d1b850..71e9fb54584 100644 --- a/lib/libevent/buffer.c +++ b/lib/libevent/buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buffer.c,v 1.18 2010/07/12 18:03:38 nicm Exp $ */ +/* $OpenBSD: buffer.c,v 1.19 2010/07/17 17:16:47 chl Exp $ */ /* * Copyright (c) 2002, 2003 Niels Provos <provos@citi.umich.edu> @@ -65,6 +65,7 @@ #include "event.h" #include "evutil.h" +#include "./log.h" struct evbuffer * evbuffer_new(void) |