diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-09-02 19:11:11 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2021-09-02 19:11:11 +0000 |
commit | d9488baa63351cafd237f5af15018ea5898ec0bc (patch) | |
tree | 9704741988528c28a8cb51c1e60fae56d712ab6d /src/include | |
parent | 208dc53700866d413efaf7374ebd9dbaeaee6551 (diff) | |
download | s6-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.h | 2 |
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 ; |