mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-27 16:51:15 -03:00
Replace all printf invocations with wprintf
Remember, GNU doesn't allow mixing narrow and wide IO.
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
static const int kAutoloadStalenessInterval = 15;
|
||||
|
||||
file_access_attempt_t access_file(const wcstring &path, int mode) {
|
||||
// printf("Touch %ls\n", path.c_str());
|
||||
// wprintf(L"Touch %ls\n", path.c_str());
|
||||
file_access_attempt_t result = {};
|
||||
struct stat statbuf;
|
||||
if (wstat(path, &statbuf)) {
|
||||
|
||||
Reference in New Issue
Block a user