974b936917
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/efivar#9f54d8029387895b7b1389d9a9f9e0bf476a027f
136 lines
3.4 KiB
Diff
136 lines
3.4 KiB
Diff
From c6122e960a412dd181dbea3ef0559640139a3c26 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Thu, 30 Jan 2020 13:54:34 -0500
|
|
Subject: [PATCH 76/86] util.h: minor whitespace cleanup
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
src/util.h | 102 ++++++++++++++++++++++++++---------------------------
|
|
1 file changed, 51 insertions(+), 51 deletions(-)
|
|
|
|
diff --git a/src/util.h b/src/util.h
|
|
index 4791223d962..b7b03931d7e 100644
|
|
--- a/src/util.h
|
|
+++ b/src/util.h
|
|
@@ -144,66 +144,66 @@ lcm(uint64_t x, uint64_t y)
|
|
}
|
|
|
|
#ifndef strdupa
|
|
-#define strdupa(s) \
|
|
- (__extension__ ({ \
|
|
- const char *__in = (s); \
|
|
- size_t __len = strlen (__in); \
|
|
- char *__out = (char *) alloca (__len + 1); \
|
|
- strcpy(__out, __in); \
|
|
- __out; \
|
|
+#define strdupa(s) \
|
|
+ (__extension__ ({ \
|
|
+ const char *__in = (s); \
|
|
+ size_t __len = strlen (__in); \
|
|
+ char *__out = (char *) alloca (__len + 1); \
|
|
+ strcpy(__out, __in); \
|
|
+ __out; \
|
|
}))
|
|
#endif
|
|
|
|
#ifndef strndupa
|
|
-#define strndupa(s, l) \
|
|
- (__extension__ ({ \
|
|
- const char *__in = (s); \
|
|
- size_t __len = strnlen (__in, (l)); \
|
|
- char *__out = (char *) alloca (__len + 1); \
|
|
- strncpy(__out, __in, __len); \
|
|
- __out[__len] = '\0'; \
|
|
- __out; \
|
|
+#define strndupa(s, l) \
|
|
+ (__extension__ ({ \
|
|
+ const char *__in = (s); \
|
|
+ size_t __len = strnlen (__in, (l)); \
|
|
+ char *__out = (char *) alloca (__len + 1); \
|
|
+ strncpy(__out, __in, __len); \
|
|
+ __out[__len] = '\0'; \
|
|
+ __out; \
|
|
}))
|
|
#endif
|
|
|
|
-#define asprintfa(str, fmt, args...) \
|
|
- ({ \
|
|
- char *_tmp = NULL; \
|
|
- int _rc; \
|
|
- *(str) = NULL; \
|
|
- _rc = asprintf((str), (fmt), ## args); \
|
|
- if (_rc > 0) { \
|
|
- _tmp = strdupa(*(str)); \
|
|
- if (!_tmp) { \
|
|
- _rc = -1; \
|
|
- } else { \
|
|
- free(*(str)); \
|
|
- *(str) = _tmp; \
|
|
- } \
|
|
- } else { \
|
|
- _rc = -1; \
|
|
- } \
|
|
- _rc; \
|
|
+#define asprintfa(str, fmt, args...) \
|
|
+ ({ \
|
|
+ char *_tmp = NULL; \
|
|
+ int _rc; \
|
|
+ *(str) = NULL; \
|
|
+ _rc = asprintf((str), (fmt), ## args); \
|
|
+ if (_rc > 0) { \
|
|
+ _tmp = strdupa(*(str)); \
|
|
+ if (!_tmp) { \
|
|
+ _rc = -1; \
|
|
+ } else { \
|
|
+ free(*(str)); \
|
|
+ *(str) = _tmp; \
|
|
+ } \
|
|
+ } else { \
|
|
+ _rc = -1; \
|
|
+ } \
|
|
+ _rc; \
|
|
})
|
|
|
|
-#define vasprintfa(str, fmt, ap) \
|
|
- ({ \
|
|
- char *_tmp = NULL; \
|
|
- int _rc; \
|
|
- *(str) = NULL; \
|
|
- _rc = vasprintf((str), (fmt), (ap)); \
|
|
- if (_rc > 0) { \
|
|
- _tmp = strdupa(*(str)); \
|
|
- if (!_tmp) { \
|
|
- _rc = -1; \
|
|
- } else { \
|
|
- free(*(str)); \
|
|
- *(str) = _tmp; \
|
|
- } \
|
|
- } else { \
|
|
- _rc = -1; \
|
|
- } \
|
|
- _rc; \
|
|
+#define vasprintfa(str, fmt, ap) \
|
|
+ ({ \
|
|
+ char *_tmp = NULL; \
|
|
+ int _rc; \
|
|
+ *(str) = NULL; \
|
|
+ _rc = vasprintf((str), (fmt), (ap)); \
|
|
+ if (_rc > 0) { \
|
|
+ _tmp = strdupa(*(str)); \
|
|
+ if (!_tmp) { \
|
|
+ _rc = -1; \
|
|
+ } else { \
|
|
+ free(*(str)); \
|
|
+ *(str) = _tmp; \
|
|
+ } \
|
|
+ } else { \
|
|
+ _rc = -1; \
|
|
+ } \
|
|
+ _rc; \
|
|
})
|
|
|
|
static inline ssize_t
|
|
--
|
|
2.24.1
|
|
|