just return 0 instead of EXIT_SUCCESS
diff --git a/gotweb/gotweb.c b/gotweb/gotweb.c
index afa9545..3d742cb 100644
--- a/gotweb/gotweb.c
+++ b/gotweb/gotweb.c
@@ -2897,5 +2897,5 @@ done:
}
khttp_free(gw_trans->gw_req);
- return EXIT_SUCCESS;
+ return 0;
}