From 7ce6c0840b6f72ea852b69811d25d89c06a8866e Mon Sep 17 00:00:00 2001 From: alexpeshkoff Date: Wed, 28 Nov 2007 13:12:14 +0000 Subject: [PATCH] Fixed gcc warning --- src/alice/alice.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/alice/alice.h b/src/alice/alice.h index c489d628ca..40063eb3cd 100644 --- a/src/alice/alice.h +++ b/src/alice/alice.h @@ -165,6 +165,8 @@ public: AliceGlobals(Jrd::pfn_svc_output outProc, Jrd::Service* outData) : ThreadData(ThreadData::tddALICE), ALICE_default_pool(0), + exit_code(FINI_ERROR), // prevent FINI_OK in case of unknown error thrown + // would be set to FINI_OK (==0) in ALICE_exit output_proc(outProc), output_data(outData), output_file(NULL), @@ -174,9 +176,7 @@ public: status(status_vector), sw_redirect(NOREDIRECT), sw_service(false), - sw_service_thd(false), - exit_code(FINI_ERROR) // prevent FINI_OK in case of unknown error thrown - // would be set to FINI_OK (==0) in ALICE_exit + sw_service_thd(false) { memset(&ALICE_data, 0, sizeof(user_action)); }