[pacman-dev] [PATCH] Move break to a new line for consistency
Hong Shick Pak
hong at hspak.com
Sat Jun 14 22:37:31 EDT 2014
This was the only break that didn't have its own line in the function
parsearg_query.
Signed-off-by: Hong Shick Pak <hong at hspak.com>
---
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 ef86d39..af43656 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;
}
--
2.0.0
More information about the pacman-dev
mailing list