diff --git a/libfdisk/src/gpt.c b/libfdisk/src/gpt.c index 72370a1..8a91d7a 100644 --- a/libfdisk/src/gpt.c +++ b/libfdisk/src/gpt.c @@ -2032,7 +2032,8 @@ static int gpt_write(struct fdisk_context *cxt, off_t offset, void *buf, size_t if (write_all(cxt->dev_fd, buf, count)) return -errno; - fsync(cxt->dev_fd); + if (fsync(cxt->dev_fd) != 0) + return -errno; DBG(GPT, ul_debug(" write OK [offset=%zu, size=%zu]", (size_t) offset, count));