mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Fix an uninitialized variable warning.
It's a false positive, but best to be safe.
This commit is contained in:
parent
21b5ea8075
commit
427d52511c
1 changed files with 1 additions and 0 deletions
|
@ -684,6 +684,7 @@ obj_find_message (progs_t *pr, pr_class_t *class, pr_sel_t *selector)
|
|||
}
|
||||
if (sel->sel_id == selector->sel_id) {
|
||||
if (dev & SYS_RUA_MSG) {
|
||||
names = pr->selector_names;
|
||||
Sys_Printf ("found %s: %x\n",
|
||||
PR_GetString (pr, names[selector->sel_id]),
|
||||
method->method_imp);
|
||||
|
|
Loading…
Reference in a new issue