aboutsummaryrefslogtreecommitdiff
path: root/core/nvram-format.c
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2016-07-08 10:38:32 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-07-11 13:52:09 +1000
commitd7235db2eb8694d5c088fd868c6b1fe4cbc5e1bf (patch)
treeca32d66ecc69050ec70d41e81153aa265fa1e6ef /core/nvram-format.c
parent26cbe27cdfcdfbee0a624c3ae2b980d252b3d8d3 (diff)
downloadskiboot-d7235db2eb8694d5c088fd868c6b1fe4cbc5e1bf.zip
skiboot-d7235db2eb8694d5c088fd868c6b1fe4cbc5e1bf.tar.gz
skiboot-d7235db2eb8694d5c088fd868c6b1fe4cbc5e1bf.tar.bz2
nvram-format: fix inconsistent indenting
Found by smatch static analysis (http://smatch.sourceforge.net/): core/nvram-format.c:146 nvram_check() warn: inconsistent indenting core/nvram-format.c:151 nvram_check() warn: inconsistent indenting Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'core/nvram-format.c')
-rw-r--r--core/nvram-format.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/nvram-format.c b/core/nvram-format.c
index 881a3b9..899fab4 100644
--- a/core/nvram-format.c
+++ b/core/nvram-format.c
@@ -142,12 +142,12 @@ int nvram_check(void *nvram_image, const uint32_t nvram_size)
}
}
if (!found_common) {
- prerror("NVRAM: Common partition not found !\n");
+ prerror("NVRAM: Common partition not found !\n");
goto failed;
}
if (!found_skiboot) {
- prerror("NVRAM: Skiboot private partition "
- "not found !\n");
+ prerror("NVRAM: Skiboot private partition "
+ "not found !\n");
goto failed;
}