diff options
| author | Gluster Ant <bugzilla-bot@gluster.org> | 2018-09-12 17:22:48 +0530 |
|---|---|---|
| committer | Nigel Babu <nigelb@redhat.com> | 2018-09-12 17:22:48 +0530 |
| commit | 45a71c0548b6fd2c757aa2e7b7671a1411948894 (patch) | |
| tree | 2a5a9b73bae47ab53a41166fd041a06612587f48 /libglusterfs/src/compat-uuid.h | |
| parent | be77dbbda692792335a8e9e7c02e0c281f003c40 (diff) | |
Land clang-format changes
Change-Id: I6f5d8140a06f3c1b2d196849299f8d483028d33b
Diffstat (limited to 'libglusterfs/src/compat-uuid.h')
| -rw-r--r-- | libglusterfs/src/compat-uuid.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libglusterfs/src/compat-uuid.h b/libglusterfs/src/compat-uuid.h index 2e66117ce1f..6bce6d033d0 100644 --- a/libglusterfs/src/compat-uuid.h +++ b/libglusterfs/src/compat-uuid.h @@ -16,45 +16,45 @@ #include <uuid.h> static inline void -gf_uuid_clear (uuid_t uuid) +gf_uuid_clear(uuid_t uuid) { - uuid_clear (uuid); + uuid_clear(uuid); } static inline int -gf_uuid_compare (uuid_t u1, uuid_t u2) +gf_uuid_compare(uuid_t u1, uuid_t u2) { - return uuid_compare (u1, u2); + return uuid_compare(u1, u2); } static inline void -gf_uuid_copy (uuid_t dst, const uuid_t src) +gf_uuid_copy(uuid_t dst, const uuid_t src) { - uuid_copy (dst, src); + uuid_copy(dst, src); } static inline void -gf_uuid_generate (uuid_t uuid) +gf_uuid_generate(uuid_t uuid) { - uuid_generate (uuid); + uuid_generate(uuid); } static inline int -gf_uuid_is_null (uuid_t uuid) +gf_uuid_is_null(uuid_t uuid) { - return uuid_is_null (uuid); + return uuid_is_null(uuid); } static inline int -gf_uuid_parse (const char *in, uuid_t uuid) +gf_uuid_parse(const char *in, uuid_t uuid) { - return uuid_parse (in, uuid); + return uuid_parse(in, uuid); } static inline void -gf_uuid_unparse (const uuid_t uuid, char *out) +gf_uuid_unparse(const uuid_t uuid, char *out) { - uuid_unparse (uuid, out); + uuid_unparse(uuid, out); } #elif defined(__FreeBSD__) |
