1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

treewide: remove unneeded semicolons

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
Masahiro Yamada
2017-06-13 15:17:28 +09:00
committed by Tom Rini
parent f9e4afcd16
commit 51855e8981
14 changed files with 21 additions and 21 deletions

View File

@@ -112,7 +112,7 @@ static char* ExtractDecimal (uint32_t* value, char* getPtr)
static void ExtractNumber (uint32_t* value, char* getPtr)
{
bool neg = false;;
bool neg = false;
while (*getPtr == ' ') getPtr++;
if (*getPtr == '-') {