1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-04 13:02:47 -05:00

Remove some unused variables.

clang warned about these in the recent bidi work.
This commit is contained in:
Simon Tatham
2021-10-16 11:54:43 +01:00
parent 54930cf784
commit e744071a03
2 changed files with 5 additions and 5 deletions

View File

@ -235,13 +235,13 @@ static void char_test(const char *filename, FILE *fp)
}
/* Break each test line up into its main fields */
ptrlen input_pl, para_dir_pl, para_level_pl, levels_pl, order_pl;
ptrlen input_pl, para_dir_pl, order_pl;
{
ptrlen pl = ptrlen_from_asciz(line);
input_pl = ptrlen_get_word(&pl, ";");
para_dir_pl = ptrlen_get_word(&pl, ";");
para_level_pl = ptrlen_get_word(&pl, ";");
levels_pl = ptrlen_get_word(&pl, ";");
ptrlen_get_word(&pl, ";"); /* paragraph level, which we ignore */
ptrlen_get_word(&pl, ";"); /* embedding levels, which we ignore */
order_pl = ptrlen_get_word(&pl, ";");
}