diff options
author | Tim Prouty <tprouty@samba.org> | 2009-03-12 10:44:36 -0700 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-03-12 12:28:13 -0700 |
commit | a84f939f4f90b829515808eed203cc6a32b4d8ae (patch) | |
tree | e27a908d9ef08f65854b2201ac09663af38320c0 /lib | |
parent | 5c63388f63028af9bac2acb2ef0a38736278823b (diff) | |
download | samba-a84f939f4f90b829515808eed203cc6a32b4d8ae.tar.gz samba-a84f939f4f90b829515808eed203cc6a32b4d8ae.tar.bz2 samba-a84f939f4f90b829515808eed203cc6a32b4d8ae.zip |
tevent: Fix might be unitialized warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tevent/tevent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c index a9e18c349d..867cfc08fe 100644 --- a/lib/tevent/tevent.c +++ b/lib/tevent/tevent.c @@ -457,7 +457,7 @@ int _tevent_loop_until(struct tevent_context *ev, void *private_data, const char *location) { - int ret; + int ret = 0; void *nesting_stack_ptr = NULL; ev->nesting.level++; |