From 5eb3c18b010456f5adf5d0810aabaa0b61852561 Mon Sep 17 00:00:00 2001 From: "Nicholas J. Kain" Date: Sun, 14 Nov 2010 08:49:58 -0500 Subject: [PATCH] Indentation fix. --- ndhc/options.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ndhc/options.c b/ndhc/options.c index 585cda9..dbceaab 100644 --- a/ndhc/options.c +++ b/ndhc/options.c @@ -183,6 +183,7 @@ struct option_set *find_option(struct option_set *opt_list, char code) while (opt_list && opt_list->data[OPT_CODE] < code) opt_list = opt_list->next; - if (opt_list && opt_list->data[OPT_CODE] == code) return opt_list; - else return NULL; + if (opt_list && opt_list->data[OPT_CODE] == code) + return opt_list; + return NULL; }