Skip to content

Commit

Permalink
Deleted the comments in file.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
ax-6 committed Aug 2, 2024
1 parent 6b1159f commit 849ce72
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aqvm/base/file/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ int AqvmBaseFile_UnlockFile(struct AqvmBaseFile_File* stream) {
}

int AqvmBaseFile_LockStream(struct AqvmBaseFile_File* stream) {
/*if (AqvmBaseFile_CheckStream(stream) != 0) {
if (AqvmBaseFile_CheckStream(stream) != 0) {
// TODO
return -1;
}
Expand All @@ -60,13 +60,13 @@ int AqvmBaseFile_LockStream(struct AqvmBaseFile_File* stream) {
// TODO
return -4;
}
}*/
}

return 0;
}

int AqvmBaseFile_UnlockStream(struct AqvmBaseFile_File* stream) {
/*if (AqvmBaseFile_CheckStream(stream) != 0) {
if (AqvmBaseFile_CheckStream(stream) != 0) {
// TODO
return -1;
}
Expand All @@ -85,7 +85,7 @@ int AqvmBaseFile_UnlockStream(struct AqvmBaseFile_File* stream) {
// TODO
return -4;
}
}*/
}

return 0;
}
Expand Down

0 comments on commit 849ce72

Please sign in to comment.