From 925f67e86d127c8917f92bde1cf5abd5b07d0768 Mon Sep 17 00:00:00 2001 From: Luiz Angelo Daros de Luca Date: Thu, 29 Dec 2016 21:02:57 -0200 Subject: Fix TEMP_FAILURE_RETRY definition when not defined. https://sourceware.org/bugzilla/show_bug.cgi?id=21001 Signed-off-by: Luiz Angelo Daros de Luca --- lib/ChangeLog | 5 +++++ lib/crc32_file.c | 1 + lib/system.h | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ChangeLog b/lib/ChangeLog index 1fe59067..fcf5b105 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2016-12-29 Luiz Angelo Daros de Luca + + * crc32_file.c: Include system.h. + * system.h: Remove semi-colon after TEMP_FAILURE_RETRY definition. + 2016-12-24 Mark Wielaard * version.c: New source file. diff --git a/lib/crc32_file.c b/lib/crc32_file.c index a8434d42..57e42980 100644 --- a/lib/crc32_file.c +++ b/lib/crc32_file.c @@ -35,6 +35,7 @@ #include #include #include +#include "system.h" int crc32_file (int fd, uint32_t *resp) diff --git a/lib/system.h b/lib/system.h index ccd99d63..dde7c4a2 100644 --- a/lib/system.h +++ b/lib/system.h @@ -81,7 +81,7 @@ do \ __res = expression; \ while (__res == -1 && errno == EINTR); \ - __res; }); + __res; }) #endif static inline ssize_t __attribute__ ((unused)) -- cgit v1.2.3