From 404e12634438db526db3cebbff2e1899a2e3431a Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Tue, 30 Apr 2013 09:46:22 -0400 Subject: [PATCH] Get rid of extra "continue". It's confusing, and it doesn't actually accomplish anything when applied to *either* loop. Signed-off-by: Peter Jones --- fallback.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fallback.c b/fallback.c index 7f4f883..0001722 100644 --- a/fallback.c +++ b/fallback.c @@ -375,10 +375,8 @@ try_boot_csv(EFI_FILE_HANDLE fh, CHAR16 *dirname, CHAR16 *filename) if (*start == 0xfeff) start++; while (*start) { - while (*start == L'\r' || *start == L'\n') { + while (*start == L'\r' || *start == L'\n') start++; - continue; - } UINTN l = StrCSpn(start, L"\r\n"); if (l == 0) { if (start[l] == L'\0')