Missing Brace

This commit is contained in:
David Sidrane 2015-05-14 18:15:10 -10:00
parent 6667e6e078
commit a0af91d05c
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ param_count_used(void)
param_t
param_for_index(unsigned index)
{
if (index < get_param_info_count())
if (index < get_param_info_count()) {
return (param_t)index;
}