From 0bbedb2933e2f110565c7e7574891428136efb2e Mon Sep 17 00:00:00 2001 From: Bart House Date: Sat, 2 Nov 2019 11:51:20 -0700 Subject: [PATCH] Fix cut and paste error in output string. --- sys/winnt/win10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/winnt/win10.c b/sys/winnt/win10.c index 07b898107..d1332260c 100644 --- a/sys/winnt/win10.c +++ b/sys/winnt/win10.c @@ -37,7 +37,7 @@ void win10_init() HINSTANCE hKernel32 = LoadLibraryA("kernel32.dll"); if (hKernel32 == NULL) - panic("Unable to load user32.dll"); + panic("Unable to load kernel32.dll"); gWin10.GetCurrentPackageFullName = (GetCurrentPackageFullNameProc) GetProcAddress(hKernel32, "GetCurrentPackageFullName"); if (gWin10.GetCurrentPackageFullName == NULL)