[pacman-dev] [PATCH] 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> --- 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
On 15/06/14 12:37, Hong Shick Pak wrote:
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>
Ack.
--- 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; }
participants (2)
-
Allan McRae
-
Hong Shick Pak