Fix warning about uninitialised nciop

This commit is contained in:
Peter Hill 2024-03-06 17:40:28 +00:00
parent 09e96aeaee
commit 31d1fc0a6e
No known key found for this signature in database
GPG Key ID: 0C6B9742E72848EE

View File

@ -313,7 +313,7 @@ mmapio_open(const char* path,
void* parameters,
ncio* *nciopp, void** const mempp)
{
ncio* nciop;
ncio* nciop = NULL;
int fd;
int status;
int oflags;