X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7c3dae48f48ef55a964671b22db56ba4e2852b5f..73697c2bb4ebdaaaeb8698cbbb3a1a526cc05f37:/src/plugins/file_system/s4u_FileSystem.cpp diff --git a/src/plugins/file_system/s4u_FileSystem.cpp b/src/plugins/file_system/s4u_FileSystem.cpp index 8e4926fc0b..4c9011e9d1 100644 --- a/src/plugins/file_system/s4u_FileSystem.cpp +++ b/src/plugins/file_system/s4u_FileSystem.cpp @@ -227,7 +227,7 @@ void File::update_position(sg_offset_t position) xbt_assert(position >= 0, "Error in seek, cannot seek before file %s", get_path()); current_position_ = position; if(current_position_>size_){ - XBT_DEBUG("Updating size of file %s from %llu to %llu", path_.c_str(), size_, position); + XBT_DEBUG("Updating size of file %s from %llu to %lld", path_.c_str(), size_, position); local_disk_->extension()->incr_used_size(current_position_-size_); size_ = current_position_;