Skip to content

Commit 1d2936d

Browse files
authored
Fix merge conflict
1 parent 12a23e8 commit 1d2936d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DiskFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ void CDiskFile::checkFileWritable(const std::string& fileName) const {
203203
ofs.close();
204204
}
205205

206-
void CDiskFile::createDiskFile(const std::string &fileName, int diskFileSize) {
206+
void CDiskFile::createDiskFile(const std::string &fileName, u64 diskFileSize) {
207207

208208
std::ofstream ofs(fileName, std::ios::binary);
209209
if (ofs.is_open() && ofs.good()) {

0 commit comments

Comments
 (0)