From bd72068332978bb5248d7dc6de4204f01c9f0d2f Mon Sep 17 00:00:00 2001 From: "toshok%hungry.com" Date: Thu, 10 Dec 1998 11:25:31 +0000 Subject: [PATCH] reverse initialization order to get around compiler warning. --- ef/Runtime/System/Thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ef/Runtime/System/Thread.h b/ef/Runtime/System/Thread.h index be2ea6b9687..5ae375f0eec 100644 --- a/ef/Runtime/System/Thread.h +++ b/ef/Runtime/System/Thread.h @@ -85,7 +85,7 @@ public: // dummy constructor, never used (only used for casting) JavaThread(const Type& type) : JavaObject(type) { } }; - Thread(JavaObject* o) : state(DEFAULT), peer(o), id(NULL), handle(NULL), prio(PR_PRIORITY_NORMAL) { + Thread(JavaObject* o) : state(DEFAULT), peer(o), handle(NULL), prio(PR_PRIORITY_NORMAL), id(NULL) { _lock = PR_NewLock(); } ~Thread() {