summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHong Shick Pak <hong@hspak.com>2014-06-14 22:37:31 -0400
committerAllan McRae <allan@archlinux.org>2014-06-23 22:35:21 +1000
commit7b41952bfc812becdaba45f7823ec653ed905752 (patch)
tree7758cf07aca82e25c6d1f4a69762274047b87d87 /src
parent537a335cc724a5c7c97824d33a2406b5dcea162d (diff)
downloadpacman-7b41952bfc812becdaba45f7823ec653ed905752.tar.xz
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>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/pacman.c3
1 files changed, 2 insertions, 1 deletions
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;
}