From a0af91d05cd801852f08041ddeffa881ae2cd1fb Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Thu, 14 May 2015 18:15:10 -1000 Subject: [PATCH] Missing Brace --- src/modules/systemlib/param/param.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/systemlib/param/param.c b/src/modules/systemlib/param/param.c index 010f40c883..14e7299e60 100644 --- a/src/modules/systemlib/param/param.c +++ b/src/modules/systemlib/param/param.c @@ -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; }