From: Steven Luo Date: Wed, 26 May 2010 14:36:30 +0000 (-0700) Subject: Indentation fixes X-Git-Tag: v3.3b1~14 X-Git-Url: http://git.maemo.org/git/?p=browser-switch;a=commitdiff_plain;h=48377071ac9ac8df7d71526ba849be56524101bd;ds=sidebyside Indentation fixes --- diff --git a/config.c b/config.c index 727287f..0fbddf0 100644 --- a/config.c +++ b/config.c @@ -108,12 +108,12 @@ static int swb_config_load_option(struct swb_config *cfg, if (!(cfg->flags & opt.set_mask)) { switch (opt.type) { case SWB_CONFIG_OPT_STRING: - *(char **)cfg->entries[i] = value; - break; + *(char **)cfg->entries[i] = value; + break; case SWB_CONFIG_OPT_INT: - *(int *)cfg->entries[i] = atoi(value); - free(value); - break; + *(int *)cfg->entries[i] = atoi(value); + free(value); + break; } cfg->flags |= opt.set_mask; }