From 0e778b0b16576244c6a1c3b0497d5ed8991b7362 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 8 Aug 2017 15:27:32 -0400 Subject: [PATCH] FIXME removal: it's okay for the PHYSFS_Io to be NULL here. We use this technique in several other places, too. --- src/physfs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/physfs.c b/src/physfs.c index 29a4ffb..b6e77d9 100644 --- a/src/physfs.c +++ b/src/physfs.c @@ -1661,7 +1661,6 @@ int PHYSFS_setWriteDir(const char *newDir) if (newDir != NULL) { - /* !!! FIXME-3.0: PHYSFS_Io shouldn't be NULL */ writeDir = createDirHandle(NULL, newDir, NULL, 1); retval = (writeDir != NULL); } /* if */