From 82a9c9fdb6a66505dcc9627a5db8a7014c97f0c0 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Fri, 26 Apr 2013 14:10:34 -0400 Subject: 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(-) (limited to 'fallback.c') diff --git a/fallback.c b/fallback.c index 7f4f8836..00017225 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') -- cgit v1.2.3