Skip to content

Commit

Permalink
Merge pull request #236 from pipehuffer/master
Browse files Browse the repository at this point in the history
kernel: replace BSD types with stdint's in kevent's flags
  • Loading branch information
kiwidoggie authored Mar 21, 2023
2 parents 84892a2 + 47c4b5e commit c63c9e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/orbis/_types/kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
struct kevent {
uintptr_t ident; /* identifier for this event */
short filter; /* filter for event */
u_short flags;
u_int fflags;
uint16_t flags;
uint32_t fflags;
intptr_t data;
void *udata; /* opaque user data identifier */
};
Expand Down Expand Up @@ -197,4 +197,4 @@ typedef struct
int AppType;
char TitleId[10];
char unk0x1A[0x2E];
} OrbisAppInfo;
} OrbisAppInfo;

0 comments on commit c63c9e6

Please sign in to comment.