diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-21 02:26:32 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-21 02:26:32 +0000 |
commit | 787d104bd528c47140b6e6f25b30682a02db60a5 (patch) | |
tree | 789d87a7dd7ac65b8437728dd3eb761091cfb375 /src | |
parent | 7427c6ee7e31ae3281af678cdb1c71c9e57867f6 (diff) | |
download | skalibs-787d104bd528c47140b6e6f25b30682a02db60a5.tar.xz |
Bugfix: definition of UNIXCONNECTION_ZERO
Diffstat (limited to 'src')
-rw-r--r-- | src/include/skalibs/unixconnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/skalibs/unixconnection.h b/src/include/skalibs/unixconnection.h index 50a6ee8..c54a311 100644 --- a/src/include/skalibs/unixconnection.h +++ b/src/include/skalibs/unixconnection.h @@ -13,7 +13,7 @@ struct unixconnection_s char mainbuf[UNIXMESSAGE_BUFSIZE] ; char auxbuf[UNIXMESSAGE_AUXBUFSIZE] ; } ; -#define UNIXCONNECTION_ZERO { .out = UNIXMESSAGE_SENDER_ZERO, .in = UNIXMESSAGE_RECEIVER_ZERO } ; +#define UNIXCONNECTION_ZERO { .out = UNIXMESSAGE_SENDER_ZERO, .in = UNIXMESSAGE_RECEIVER_ZERO } extern unixconnection_t const unixconnection_zero ; extern void unixconnection_init (unixconnection_t *, int, int) ; |