diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-25 01:20:34 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-25 01:20:34 -0700 |
commit | 3b21d884fbcb3c994931278129bec8dea76bb777 (patch) | |
tree | f66854e934cf036d7c6fdca2c91421488dcc5ca7 /tests/fcntl/src.c | |
parent | c1b363f2f4b60f8ed50964790cc15ccc97baea1a (diff) |
improve header constant parsing
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; |