Skip to content

Commit

Permalink
remove really weird debugging statement from stage1
Browse files Browse the repository at this point in the history
  • Loading branch information
g-w1 authored and andrewrk committed Jul 6, 2021
1 parent b5659e0 commit d089b3d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/stage1/os.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -924,12 +924,6 @@ Error os_make_path(Buf *path) {
Error os_make_dir(Buf *path) {
#if defined(ZIG_OS_WINDOWS)
PathSpace path_space = slice_to_prefixed_file_w(buf_to_slice(path));
if (memEql(buf_to_slice(path), str("C:\\dev\\tést"))) {
for (size_t i = 0; i < path_space.len; i++) {
fprintf(stderr, "%d ", path_space.data.items[i]);
}
fprintf(stderr, "\n");
}

if (!CreateDirectoryW(&path_space.data.items[0], NULL)) {
if (GetLastError() == ERROR_ALREADY_EXISTS)
Expand Down

0 comments on commit d089b3d

Please sign in to comment.