Skip to content

Commit

Permalink
revert debug changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iDmple committed Dec 7, 2023
1 parent 17ab1ec commit b37d245
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions source/fs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -809,10 +809,6 @@ static void hello_ll_symlink(fuse_req_t req, const char *link, fuse_ino_t parent
symlink.setParent(parent);
symlink.setName(name);

std::cout << "link: " << link << std::endl;
std::cout << "parent: " << parent << std::endl;
std::cout << "name: " << name << std::endl;

auto promise = request.send();
auto result = promise.wait(waitScope);
auto response = result.getRes();
Expand Down Expand Up @@ -1269,7 +1265,7 @@ static void hello_ll_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr,
attributes.setStBlksize(attr->st_blksize);
attributes.setStBlocks(attr->st_blocks);

// clang-format off
// clang-format off
#if defined(__APPLE__)
stAtime.setTvSec(attr->st_atimespec.tv_sec);
stAtime.setTvNSec(attr->st_atimespec.tv_nsec);
Expand Down

0 comments on commit b37d245

Please sign in to comment.