Fix format string for internal parser error

This commit is contained in:
Johannes Altmanninger
2025-01-13 06:25:35 +01:00
parent 3695c349c6
commit 24a32d5202

View File

@@ -2742,7 +2742,7 @@ macro_rules! internal_error {
)
$(, $args)*
);
FLOGF!(debug, "Encountered while parsing:<<<<\n{}\n>>>", $self.tokens.src);
FLOGF!(debug, "Encountered while parsing:<<<<\n%s\n>>>", $self.tokens.src);
panic!();
};
}