Skip to content

Commit

Permalink
win64: remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
hanatos committed Oct 4, 2024
1 parent 9a8d70f commit 99efe48
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/core/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,6 @@ fs_realpath(const char *path, char *resolved_path)
snprintf(ret, PATH_MAX, "%s", ret2);
free(ret2);
}
fprintf(stderr, "final handle %s\n", ret);
return ret;
#else
return realpath(path, resolved_path);
Expand All @@ -395,7 +394,6 @@ static inline int // return 0 on success
fs_symlink(const char *target, const char *linkpath)
{
#ifdef _WIN64
fprintf(stderr, "XXX *** XXX creating %s -> %s link!\n", linkpath, target);
return !CreateSymbolicLinkA(linkpath, target, 2);
#else
return symlink(target, linkpath);
Expand Down

0 comments on commit 99efe48

Please sign in to comment.