summaryrefslogtreecommitdiffstats
path: root/commands/hashsum.c
diff options
context:
space:
mode:
authorAntony Pavlov <antonynpavlov@gmail.com>2015-03-27 19:23:04 +0300
committerSascha Hauer <s.hauer@pengutronix.de>2015-03-30 19:08:14 +0200
commit238ffb68f62525f12ef1af1ebe316360634ec529 (patch)
tree3584a9d60bd7159eb68435fca5cf35591cde5f65 /commands/hashsum.c
parent0d348bc772fdce3972a7b1ed0bf90bc8552af26b (diff)
downloadbarebox-238ffb68f62525f12ef1af1ebe316360634ec529.tar.gz
barebox-238ffb68f62525f12ef1af1ebe316360634ec529.tar.xz
command: hashsum: Conding style fixup
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/hashsum.c')
-rw-r--r--commands/hashsum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/hashsum.c b/commands/hashsum.c
index e2dc70e68d..8d3694fa78 100644
--- a/commands/hashsum.c
+++ b/commands/hashsum.c
@@ -36,7 +36,7 @@ static int do_hash(char *algo, int argc, char *argv[])
size_t keylen = 0;
int opt, ret;
- while((opt = getopt(argc, argv, "h:")) > 0) {
+ while ((opt = getopt(argc, argv, "h:")) > 0) {
switch(opt) {
case 'h':
key = optarg;