diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2005-04-15 10:14:00 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2005-04-15 10:14:00 +0000 |
commit | dfc17a329ebcf15f4a8b0e120d15c90fbe2d6a5a (patch) | |
tree | 02d92da86e8b04ba2d941adc9a07b6252237cdb5 | |
parent | 133539f2aae0cd9b35e579f4b0443efeb25b57b6 (diff) |
Notes
-rw-r--r-- | sys/netgraph/ng_echo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/ng_echo.c b/sys/netgraph/ng_echo.c index a00447a1917d..e9daf5eda958 100644 --- a/sys/netgraph/ng_echo.c +++ b/sys/netgraph/ng_echo.c @@ -100,10 +100,10 @@ nge_rcvmsg(node_p node, item_p item, hook_p lasthook) static int nge_rcvdata(hook_p hook, item_p item) { - int error = 0; + int error; NG_FWD_ITEM_HOOK(error, item, hook); - return (0); + return (error); } /* |