From 3815d4be7ee8f1e2a9d5325e3949d535898dbc33 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 21 May 2002 22:27:41 +0000 Subject: [PATCH] blah, unitialized variable --- libs/gamecode/engine/pr_obj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gamecode/engine/pr_obj.c b/libs/gamecode/engine/pr_obj.c index 9ff8c5f3f..142e4e518 100644 --- a/libs/gamecode/engine/pr_obj.c +++ b/libs/gamecode/engine/pr_obj.c @@ -57,7 +57,7 @@ class_get_key (void *c, void *pr) static func_t obj_find_message (progs_t *pr, pr_class_t *class, pr_sel_t *selector) { - pr_class_t *c; + pr_class_t *c = class; pr_method_list_t *method_list; pr_method_t *method; int i;