Address stray warnings (#2237)

This commit is contained in:
Andrew Gaul
2023-07-29 09:19:18 +09:00
committed by GitHub
parent 1f04165a33
commit a7b38a6940
6 changed files with 17 additions and 15 deletions

View File

@ -2350,7 +2350,7 @@ ssize_t FdEntity::WriteStreamUpload(PseudoFdInfo* pseudo_obj, const char* bytes,
bool isuploading = pseudo_obj->IsUploading();
ssize_t result;
if(0 != (result = pseudo_obj->UploadBoundaryLastUntreatedArea(path.c_str(), tmporgmeta, this))){
S3FS_PRN_ERR("Failed to upload the last untreated parts(area) : result=%d", result);
S3FS_PRN_ERR("Failed to upload the last untreated parts(area) : result=%zd", result);
return result;
}