Skip to content

Commit

Permalink
ioctl: Fix wrong mask value
Browse files Browse the repository at this point in the history
RTOS-476
  • Loading branch information
adamdebek committed Jun 27, 2023
1 parent 094eeb7 commit 925fb3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sys/ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ extern "C" {
#define IOCGROUP(x) (((x) >> 8) & 0xff)


#define IOC_VOID 0x00000000
#define IOC_VOID 0x20000000
#define IOC_OUT 0x40000000
#define IOC_IN 0x80000000
#define IOC_INOUT (IOC_IN | IOC_OUT)
Expand Down

0 comments on commit 925fb3e

Please sign in to comment.