diff options
author | Caleb Maclennan <caleb@alerque.com> | 2022-03-18 17:54:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 17:54:11 +0300 |
commit | 6952262e6a1315b14935ddd0ea511c202c0154ba (patch) | |
tree | 18707ede335bcd61002de1cc8c7398fd7d02eafb /src/unixdgram.c | |
parent | d9cc531e3bc62cfe7965c8cb3df7b1d510f3f4a2 (diff) | |
download | luasocket-6952262e6a1315b14935ddd0ea511c202c0154ba.tar.gz luasocket-6952262e6a1315b14935ddd0ea511c202c0154ba.tar.bz2 luasocket-6952262e6a1315b14935ddd0ea511c202c0154ba.zip |
style: Use C-style comment syntax throughout (#309)
Co-authored-by: Denise Cullassnekuff <19711487+BlackCutpoint@users.noreply.github.com>
Diffstat (limited to 'src/unixdgram.c')
-rw-r--r-- | src/unixdgram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unixdgram.c b/src/unixdgram.c index 3ac3c5e..69093d7 100644 --- a/src/unixdgram.c +++ b/src/unixdgram.c | |||
@@ -16,7 +16,7 @@ | |||
16 | 16 | ||
17 | #define UNIXDGRAM_DATAGRAMSIZE 8192 | 17 | #define UNIXDGRAM_DATAGRAMSIZE 8192 |
18 | 18 | ||
19 | // provide a SUN_LEN macro if sys/un.h doesn't (e.g. Android) | 19 | /* provide a SUN_LEN macro if sys/un.h doesn't (e.g. Android) */ |
20 | #ifndef SUN_LEN | 20 | #ifndef SUN_LEN |
21 | #define SUN_LEN(ptr) \ | 21 | #define SUN_LEN(ptr) \ |
22 | ((size_t) (((struct sockaddr_un *) 0)->sun_path) \ | 22 | ((size_t) (((struct sockaddr_un *) 0)->sun_path) \ |