diff options
author | Günther Deschner <gd@samba.org> | 2009-08-24 14:27:13 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-08-24 14:31:02 +0200 |
commit | 965a079535bd11a7870d45991a0d0628d6579b3b (patch) | |
tree | 44f605cb7da804d53a1100ae084df5d1b3ec6a1e /lib | |
parent | be9441ac3fa167f97f54700e52dec9995b170fa3 (diff) | |
download | samba-965a079535bd11a7870d45991a0d0628d6579b3b.tar.gz samba-965a079535bd11a7870d45991a0d0628d6579b3b.tar.bz2 samba-965a079535bd11a7870d45991a0d0628d6579b3b.zip |
tevent: avoid using reserved c++ word.
Guenther
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tevent/tevent_signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent_signal.c b/lib/tevent/tevent_signal.c index 27e862453a..f07de83a5e 100644 --- a/lib/tevent/tevent_signal.c +++ b/lib/tevent/tevent_signal.c @@ -158,7 +158,7 @@ static int tevent_signal_destructor(struct tevent_signal *se) this is part of the pipe hack needed to avoid the signal race condition */ static void signal_pipe_handler(struct tevent_context *ev, struct tevent_fd *fde, - uint16_t flags, void *private) + uint16_t flags, void *_private) { char c[16]; ssize_t res; |