From c5d5f12140369f0743c5e6369a387a329683005d Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sun, 5 Feb 2023 18:53:00 +0100 Subject: [PATCH] fixed why2_fdopen POINTER_TYPES typo --- src/core/lib/utils/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lib/utils/memory.c b/src/core/lib/utils/memory.c index 2a6c2ff..14c1cc0 100644 --- a/src/core/lib/utils/memory.c +++ b/src/core/lib/utils/memory.c @@ -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; }