summaryrefslogtreecommitdiff
path: root/src/libstddjb/child_spawn3.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-09-02 16:25:02 +0000
committerLaurent Bercot <ska@appnovation.com>2021-09-02 16:25:02 +0000
commit754da814c32de5fbbd8b065e9f106cbb7bfc8ae6 (patch)
treed94416601ba5bd57dfd532bbd99931b4e48edfa7 /src/libstddjb/child_spawn3.c
parent686ca403f362ed0d92d94bec3f70984d5a012ca6 (diff)
downloadskalibs-754da814c32de5fbbd8b065e9f106cbb7bfc8ae6.tar.xz
Don't forget child_spawn either
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstddjb/child_spawn3.c')
-rw-r--r--src/libstddjb/child_spawn3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstddjb/child_spawn3.c b/src/libstddjb/child_spawn3.c
index e1e433a..255e3c1 100644
--- a/src/libstddjb/child_spawn3.c
+++ b/src/libstddjb/child_spawn3.c
@@ -112,16 +112,16 @@ pid_t child_spawn3 (char const *prog, char const *const *argv, char const *const
syncdie:
{
- char c = errno ;
- fd_write(syncpipe[1], &c, 1) ;
+ unsigned char c = errno ;
+ fd_write(syncpipe[1], (char *)&c, 1) ;
}
_exit(127) ;
}
fd_close(syncpipe[1]) ;
{
- char c ;
- syncpipe[1] = fd_read(syncpipe[0], &c, 1) ;
+ unsigned char c ;
+ syncpipe[1] = fd_read(syncpipe[0], (char *)&c, 1) ;
if (syncpipe[1])
{
int e = c ;