commit | cdb290e40cf977b7eb2d21b125f6117ad554dfde | [log] [tgz] |
---|---|---|
author | David Hendricks <david.hendricks@gmail.com> | Tue Jun 23 14:16:26 2020 -0700 |
committer | Nico Huber <nico.h@gmx.de> | Thu Jan 05 16:07:04 2023 +0000 |
tree | 31d9eac835dafbea1ef954428d29b03895b4758e | |
parent | 9148620a0d53bb8216d25f12be95b304786eeb9e [diff] [blame] |
tree: Remove unneeded semicolons after loops Trivial cleanup Change-Id: Id93a019a39b765c70b1a4eaeb25d9b582c3e4141 Signed-off-by: David Hendricks <david.hendricks@gmail.com> Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/42742 Original-Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/71312 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
diff --git a/cbtable.c b/cbtable.c index e566840..6185f12 100644 --- a/cbtable.c +++ b/cbtable.c
@@ -205,7 +205,7 @@ msg_pdbg("Found coreboot table at 0x%08lx.\n", addr); return head; - }; + } return NULL; }