summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/sys/ioctl_numbers.h
diff options
context:
space:
mode:
authorDiego Garza <86547241+diego-gt@users.noreply.github.com>2021-06-28 22:39:18 -0500
committerAndreas Kling <kling@serenityos.org>2021-06-29 10:04:29 +0200
commitc37ad5a1d3adda3a2397d5c19392c06192502f9a (patch)
tree04a9b37f15e63302d27821a20cef545d4300f972 /Userland/Libraries/LibC/sys/ioctl_numbers.h
parent85bb13e081c5ccedfa2526d1cefdb58b67a99b52 (diff)
downloadserenity-c37ad5a1d3adda3a2397d5c19392c06192502f9a.zip
LibC: Add struct keyword to FBRects.rects to make it C compiler safe
Diffstat (limited to 'Userland/Libraries/LibC/sys/ioctl_numbers.h')
-rw-r--r--Userland/Libraries/LibC/sys/ioctl_numbers.h2
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