summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-09-02 19:11:11 +0000
committerLaurent Bercot <ska@appnovation.com>2021-09-02 19:11:11 +0000
commitd9488baa63351cafd237f5af15018ea5898ec0bc (patch)
tree9704741988528c28a8cb51c1e60fae56d712ab6d /src/include
parent208dc53700866d413efaf7374ebd9dbaeaee6551 (diff)
downloads6-d9488baa63351cafd237f5af15018ea5898ec0bc.tar.xz
Pass errno as unsigned char
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/s6/lock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/s6/lock.h b/src/include/s6/lock.h
index e87e001..766a0a1 100644
--- a/src/include/s6/lock.h
+++ b/src/include/s6/lock.h
@@ -31,7 +31,7 @@ struct s6lock_s
{
textclient connection ;
genalloc list ; /* array of uint16_t */
- gensetdyn data ; /* set of char */
+ gensetdyn data ; /* set of unsigned char */
} ;
#define S6LOCK_ZERO { .connection = TEXTCLIENT_ZERO, .list = GENALLOC_ZERO, .data = GENSETDYN_INIT(int, 2, 0, 1) }
extern s6lock_t const s6lock_zero ;