diff options
author | Diego Garza <86547241+diego-gt@users.noreply.github.com> | 2021-06-28 22:39:18 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-29 10:04:29 +0200 |
commit | c37ad5a1d3adda3a2397d5c19392c06192502f9a (patch) | |
tree | 04a9b37f15e63302d27821a20cef545d4300f972 | |
parent | 85bb13e081c5ccedfa2526d1cefdb58b67a99b52 (diff) | |
download | serenity-c37ad5a1d3adda3a2397d5c19392c06192502f9a.zip |
LibC: Add struct keyword to FBRects.rects to make it C compiler safe
-rw-r--r-- | Userland/Libraries/LibC/sys/ioctl_numbers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/sys/ioctl_numbers.h b/Userland/Libraries/LibC/sys/ioctl_numbers.h index b568c24a95..e046d79517 100644 --- a/Userland/Libraries/LibC/sys/ioctl_numbers.h +++ b/Userland/Libraries/LibC/sys/ioctl_numbers.h @@ -32,7 +32,7 @@ struct FBRect { struct FBRects { unsigned count; - FBRect const* rects; + struct FBRect const* rects; }; __END_DECLS |