summaryrefslogtreecommitdiff
path: root/src/shared.h
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-06-06 14:09:32 -0500
committer@syxhe <https://t.me/syxhe>2025-06-06 14:09:32 -0500
commit5431fec6726c18234c9c28b014cc6f18a0d79884 (patch)
treede2847fdc0858606b7d542c8470bb024ef27a42b /src/shared.h
parentec0cfdc492065dcce687797d3a931af105a461c8 (diff)
Style touchup
Diffstat (limited to 'src/shared.h')
-rw-r--r--src/shared.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared.h b/src/shared.h
index adaad4a..0b401fe 100644
--- a/src/shared.h
+++ b/src/shared.h
@@ -8,7 +8,7 @@
8typedef int (*gcallback)(void*); // Generic callback signature 8typedef int (*gcallback)(void*); // Generic callback signature
9typedef void (*fcallback)(void*); // free()-like callback signature 9typedef void (*fcallback)(void*); // free()-like callback signature
10 10
11#define RETURNWERR(errval, retval) do {\ 11#define ERRRET(errval, retval) do {\
12 errno = (errval);\ 12 errno = (errval);\
13 return (retval);\ 13 return (retval);\
14} while (0) 14} while (0)