diff options
author | Björn Esser <besser82@fedoraproject.org> | 2018-09-07 22:17:21 +0200 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2018-09-08 10:38:02 -0400 |
commit | 7ca8f9aec950229817c976f420a5fded7913ea3d (patch) | |
tree | 42f1bbaa73d9a9159df75a356f6ab414f9acafde /crypt-port.h | |
parent | c4359548a854b8486069237176eb91ca8fae94b6 (diff) | |
download | libxcrypt-7ca8f9aec950229817c976f420a5fded7913ea3d.tar.gz libxcrypt-7ca8f9aec950229817c976f420a5fded7913ea3d.tar.bz2 libxcrypt-7ca8f9aec950229817c976f420a5fded7913ea3d.zip |
crypt-port.h: Style cleanup.
Diffstat (limited to 'crypt-port.h')
-rw-r--r-- | crypt-port.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypt-port.h b/crypt-port.h index dd68396..e7b2754 100644 --- a/crypt-port.h +++ b/crypt-port.h @@ -108,8 +108,8 @@ typedef union explicit_memset (s, 0x00, len) #else /* The best hope we have in this case. */ -static inline -void _xcrypt_secure_memset (void *s, size_t len) +static inline void +_xcrypt_secure_memset (void *s, size_t len) { volatile unsigned char *c = s; while (len--) |