Skip to content

Commit

Permalink
Add missing L prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ojwb committed Dec 23, 2024
1 parent e951701 commit 16f8878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wrapmsw.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow)
wcscpy(e, L"OPENSSL_MODULES=");
memcpy(e + strlen("OPENSSL_MODULES="), e_val, e_len * sizeof(wchar_t));
e[strlen("OPENSSL_MODULES=") + e_len] = L'\0';
wprintf("setenv %ls\n", e);
wprintf(L"setenv %ls\n", e);
printf("setenv %ls\n", e);
_wputenv(e);
wcscpy(buf + got - 4, L"_.exe");
wprintf("command %ls\n", buf);
wprintf(L"command %ls\n", buf);
printf("command %ls\n", buf);
}
len += len;
Expand Down

0 comments on commit 16f8878

Please sign in to comment.