/* short write: complain appropriately */
ereport(ERROR,
(errcode(ERRCODE_DISK_FULL),
- errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %u",
+ errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %lld",
FilePathName(mysink->file),
- nbytes, len, (unsigned) mysink->filepos),
+ nbytes, len, (long long) mysink->filepos),
errhint("Check free disk space.")));
}
/* short write: complain appropriately */
ereport(ERROR,
(errcode(ERRCODE_DISK_FULL),
- errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %u",
+ errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %lld",
FilePathName(mysink->file),
- nbytes, len, (unsigned) mysink->filepos),
+ nbytes, len, (long long) mysink->filepos),
errhint("Check free disk space.")));
}