Commit: 7dc44c6bf83ccb4300943ca37855ec331a57fae6
Parent: 6282bf7c9cb4b8694f95e5636140ab123d2498ab
Author: Randy Palamar
Date: Tue, 12 Nov 2024 20:41:18 -0700
win32: naming the variable is hard
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/os_win32.c b/os_win32.c
@@ -127,7 +127,7 @@ static PLATFORM_CLOSE_FN(os_close)
static PLATFORM_OPEN_FOR_WRITE_FN(os_open_for_write)
{
- iptr result = CreateFileA(name, GENERIC_WRITE, 0, 0, OPEN_EXISTING, 0, 0);
+ iptr result = CreateFileA(fname, GENERIC_WRITE, 0, 0, OPEN_EXISTING, 0, 0);
return result;
}