Commit: 32f181f85ef2935b42cd24aef53617fca242d8d1
Parent: c51178dd60f8705325e767a0c88954672a07e318
Author: Randy Palamar
Date: Wed, 13 Nov 2024 09:07:46 -0700
fix broken assert in debug build
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main_generic.c b/main_generic.c
@@ -40,7 +40,7 @@ main(void)
Pipe data_pipe = os_open_named_pipe(OS_PIPE_NAME);
input.pipe_handle = data_pipe.file;
- ASSERT(data_pipe.file == INVALID_FILE);
+ ASSERT(data_pipe.file != INVALID_FILE);
#define X(name) ctx.platform.name = os_ ## name;
PLATFORM_FNS