fortran: Fix uint back to int [PR124666]

PR fortran/124666

gcc/fortran/ChangeLog:

	* io.cc: Change uint value back to int.
This commit is contained in:
Jerry DeLisle
2026-03-30 09:19:18 -07:00
parent ea8f32849f
commit a42fa88db5

View File

@@ -213,7 +213,7 @@ next_char_not_space ()
return c;
}
static uint value = 0;
static int value = 0;
/* Simple lexical analyzer for getting the next token in a FORMAT
statement. */