projects
/
libjh.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d9303c
)
fix
author
Jann Horn
<jannhorn@googlemail.com>
Sat, 29 Mar 2014 08:48:07 +0000
(09:48 +0100)
committer
Jann Horn
<jannhorn@googlemail.com>
Sat, 29 Mar 2014 08:48:07 +0000
(09:48 +0100)
bufchain.c
patch
|
blob
|
history
netconn.c
patch
|
blob
|
history
diff --git
a/bufchain.c
b/bufchain.c
index
55a1fed
..
1359f6d
100644
(file)
--- a/
bufchain.c
+++ b/
bufchain.c
@@
-6,8
+6,6
@@
#include <ev.h>
#include <unistd.h>
-#include "bufio.h"
-
int bufio_chain_append(bufio_chain *bc, void *buf, size_t len) {
bufio_chain_entry *e = calloc(1, sizeof(*e));
if (e != NULL) return -1;
diff --git
a/netconn.c
b/netconn.c
index
f4c78d6
..
329b837
100644
(file)
--- a/
netconn.c
+++ b/
netconn.c
@@
-6,8
+6,6
@@
#include <assert.h>
#include <ev.h>
-#include "bufio.h"
-
static void connection_waiting_cb(struct ev_loop *loop, ev_io *w, int revents) {
bufio_connection *con = (bufio_connection *)w->data;
if (revents & EV_READ) {