From 7b41952bfc812becdaba45f7823ec653ed905752 Mon Sep 17 00:00:00 2001 From: Hong Shick Pak Date: Sat, 14 Jun 2014 22:37:31 -0400 Subject: 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 Signed-off-by: Allan McRae --- src/pacman/pacman.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 2f0fc2c0..783c30bf 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -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; } -- cgit v1.2.3-24-g4f1b