Move break to a new line for consistency

This was the only break that didn't have its own line in the function
parsearg_query.

Signed-off-by: Hong Shick Pak <hong@hspak.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Hong Shick Pak 2014-06-14 22:37:31 -04:00 committed by Allan McRae
parent 537a335cc7
commit 7b41952bfc
1 changed files with 2 additions and 1 deletions

View File

@ -549,7 +549,8 @@ static int parsearg_query(int opt)
break;
case OP_UPGRADES:
case 'u':
config->op_q_upgrade = 1; break;
config->op_q_upgrade = 1;
break;
default:
return 1;
}