diff options
Diffstat (limited to 'tests/fcntl/src.c')
-rw-r--r-- | tests/fcntl/src.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fcntl/src.c b/tests/fcntl/src.c index 1e9a1536..94d6f3c2 100644 --- a/tests/fcntl/src.c +++ b/tests/fcntl/src.c @@ -30,7 +30,7 @@ int main() { printf("\n"); errno = 0; - printf("F_GETFL: %d\n", fcntl(f, F_GETFL)); + printf("F_GETFL: %d\n", fcntl(f, F_GETFL)); // XXX is the result in output correct? printf("errno: %d\n", errno); printf("\n"); errno = 0; @@ -40,7 +40,7 @@ int main() { printf("\n"); errno = 0; - printf("F_GETFL/2: %#x\n", fcntl(f, F_GETFL)); + printf("F_GETFL/2: %#x\n", fcntl(f, F_GETFL)); // XXX is the result in output correct? printf("errno: %d\n", errno); printf("\n"); errno = 0; |