Convert another %s to %ls.

This commit is contained in:
Martin v. Löwis 2008-04-06 17:57:16 +00:00
parent 9a89e96f9f
commit 99ddc8c603
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ Py_Main(int argc, wchar_t **argv)
if (sts==-1 && filename!=NULL) {
if ((fp = _wfopen(filename, L"r")) == NULL) {
fprintf(stderr, "%s: can't open file '%ls': [Errno %d] %s\n",
fprintf(stderr, "%ls: can't open file '%ls': [Errno %d] %s\n",
argv[0], filename, errno, strerror(errno));
return 2;