summaryrefslogtreecommitdiff
path: root/libhfcommon
diff options
context:
space:
mode:
Diffstat (limited to 'libhfcommon')
-rw-r--r--libhfcommon/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhfcommon/common.h b/libhfcommon/common.h
index 2a3172d3..b901d290 100644
--- a/libhfcommon/common.h
+++ b/libhfcommon/common.h
@@ -43,7 +43,7 @@
#ifndef TEMP_FAILURE_RETRY
#define TEMP_FAILURE_RETRY(exp) \
({ \
- __typeof(exp) _rc; \
+ __typeof(exp) _rc; \
do { \
_rc = (exp); \
} while (_rc == -1 && errno == EINTR); \