Skip to content

Commit 8c4f592

Browse files
authored
Merge pull request ceph#61107 from cbodley/wip-69241
rgw/posix: std::ignore return value of write() Reviewed-by: Daniel Gryniewicz <[email protected]>
2 parents 34dea65 + a2ebc00 commit 8c4f592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rgw/driver/posix/notify.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ namespace file::listing {
212212

213213
void signal_shutdown() {
214214
uint64_t msg{sig_shutdown};
215-
(void) write(efd, &msg, sizeof(uint64_t));
215+
std::ignore = write(efd, &msg, sizeof(uint64_t));
216216
}
217217

218218
friend class Notify;

0 commit comments

Comments
 (0)