diff --git a/tools/rlparser/rlparser.c b/tools/rlparser/rlparser.c index a32fdc958..e8651fb28 100644 --- a/tools/rlparser/rlparser.c +++ b/tools/rlparser/rlparser.c @@ -783,7 +783,8 @@ int main(int argc, char *argv[]) c++; // Maybe type pointer part - if (linePtr[c] == '*') { + if (linePtr[c] == '*') + { while(linePtr[c] == '*') c++; typeLen = c - typeStart; }