From a84f939f4f90b829515808eed203cc6a32b4d8ae Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Thu, 12 Mar 2009 10:44:36 -0700 Subject: tevent: Fix might be unitialized warning --- lib/tevent/tevent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; -- cgit