mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 17:00:13 +01:00
slang/pp: Fix file number parsing.
This commit is contained in:
parent
ce8f486156
commit
4fcda5000e
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ sl_pp_process_line(struct sl_pp_context *context,
|
|||
if (file_number != -1) {
|
||||
unsigned int file;
|
||||
|
||||
file_number = atoi(sl_pp_context_cstr(context, file_number));
|
||||
file = atoi(sl_pp_context_cstr(context, file_number));
|
||||
|
||||
if (context->file != file) {
|
||||
struct sl_pp_token_info ti;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue