aboutsummaryrefslogtreecommitdiff
path: root/src/unixdgram.c
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2022-03-18 17:54:11 +0300
committerGitHub <noreply@github.com>2022-03-18 17:54:11 +0300
commit6952262e6a1315b14935ddd0ea511c202c0154ba (patch)
tree18707ede335bcd61002de1cc8c7398fd7d02eafb /src/unixdgram.c
parentd9cc531e3bc62cfe7965c8cb3df7b1d510f3f4a2 (diff)
downloadluasocket-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.c2
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) \