summaryrefslogtreecommitdiff
path: root/src/lib/memmove.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-08 17:37:06 -0800
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-09 17:29:33 +0100
commit2f919ec4765e4484d79b866332fa19ec338db5c0 (patch)
tree1ddb3a7eba06bdd40657c5f63bc8dce322c530a6 /src/lib/memmove.c
parentb2d834a93afe129851f9aa7400f3fb2f42be20a4 (diff)
downloadcoreboot-2f919ec4765e4484d79b866332fa19ec338db5c0.tar.xz
src/lib: Remove braces for single statements
Fix the following warning detected by checkpatch.pl: WARNING: braces {} are not necessary for single statement blocks TEST=Build and run on Galileo Gen2 Change-Id: Ie4b41f6fb75142ddd75103a55e0347ed85e7e873 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18697 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/lib/memmove.c')
-rw-r--r--src/lib/memmove.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/memmove.c b/src/lib/memmove.c
index 241917c400..6a43ed4528 100644
--- a/src/lib/memmove.c
+++ b/src/lib/memmove.c
@@ -5,15 +5,13 @@ void *memmove(void *vdest, const void *vsrc, size_t count)
char *dest = vdest;
if (dest <= src) {
- while (count--) {
+ while (count--)
*dest++ = *src++;
- }
} else {
src += count - 1;
dest += count - 1;
- while(count--) {
+ while(count--)
*dest-- = *src--;
- }
}
return vdest;
}