fixed why2_fdopen POINTER_TYPES typo

This commit is contained in:
Václav Šmejkal 2023-02-05 18:53:00 +01:00
parent 90b1fef457
commit c5d5f12140
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -155,7 +155,7 @@ void *why2_fdopen(int file, char *modes)
{
void *opened = fdopen(file, modes);
push_to_list(opened, OPEN);
push_to_list(opened, FOPEN);
return opened;
}