Remove another signed issue warning.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 2 Mar 2018 17:09:48 +0000 (18:09 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 2 Mar 2018 17:09:48 +0000 (18:09 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
rw/reader/reader.c

index 0e9fcf6e20732bfa52285325bc0482171f97adda..a5967db3b7b6ac9ad7233ad6cd46174010fe5b8a 100644 (file)
@@ -6,7 +6,8 @@
 
 int main()
 {
-       int fd, n;
+       int fd;
+       ssize_t n;
        char message[100];
        // ouverture du tube mypipe en mode lecture
        fd = open("mypipe", O_RDONLY);