aboutsummaryrefslogtreecommitdiff
path: root/testcases/kernel/syscalls/fcntl/fcntl21.c
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/kernel/syscalls/fcntl/fcntl21.c')
-rw-r--r--testcases/kernel/syscalls/fcntl/fcntl21.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testcases/kernel/syscalls/fcntl/fcntl21.c b/testcases/kernel/syscalls/fcntl/fcntl21.c
index 8f1a67cf6..824b8c059 100644
--- a/testcases/kernel/syscalls/fcntl/fcntl21.c
+++ b/testcases/kernel/syscalls/fcntl/fcntl21.c
@@ -222,11 +222,11 @@ char *str_type(int type)
static char buf[20];
switch (type) {
- case 1:
+ case F_RDLCK:
return ("F_RDLCK");
- case 2:
+ case F_WRLCK:
return ("F_WRLCK");
- case 3:
+ case F_UNLCK:
return ("F_UNLCK");
default:
sprintf(buf, "BAD VALUE: %d", type);