mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix 'may be used uninitialized' warning not caught by clang.
This commit is contained in:
parent
1a458088ff
commit
a1bddc75b4
1 changed files with 1 additions and 1 deletions
|
|
@ -2211,7 +2211,7 @@ create_objects_compat(struct ip_fw_chain *ch, ipfw_insn *cmd,
|
|||
return (error);
|
||||
}
|
||||
|
||||
return (error);
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue