From d7b63a966bdedeb52511913bc9d7de170b213d7e Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Thu, 14 Sep 2023 13:00:07 +0000 Subject: [PATCH] * src/tools/apinames.c (read_header_file): Typos. --- src/tools/apinames.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/apinames.c b/src/tools/apinames.c index dfa258fd7..5a49b0649 100644 --- a/src/tools/apinames.c +++ b/src/tools/apinames.c @@ -10,7 +10,7 @@ * accepted if you are using GCC for compilation (and probably by * other compilers too). * - * Author: FreeType team, 2005-2019 + * Author: FreeType team, 2005-2023 * * This code is explicitly placed into the public domain. * @@ -295,7 +295,7 @@ read_header_file( FILE* file, p = buff; /* skip leading whitespace */ - while ( *p && ( *p == ' ' || *p == '\\' ) ) + while ( *p == ' ' || *p == '\t' ) p++; /* skip empty lines */