Skip to content

Commit c6274b6

Browse files
committed
Fix format specifier in stringLiteral function.
1 parent 4802c0a commit c6274b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tokenizer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ function stringLiteral(char: string, code: string, curr: number, tokens: Token[]
485485
case 'l':
486486
switch (c2) {
487487
case 'l':
488-
if ((isCommonFormatSpecifier(c3), true)) formatSpecifier3(format_specifier);
488+
if (isCommonFormatSpecifier(c3, true)) formatSpecifier3(format_specifier);
489489
break;
490490
default:
491491
if (isCommonFormatSpecifier(c2, false)) formatSpecifier2(format_specifier);

0 commit comments

Comments
 (0)