Pārlūkot izejas kodu

LibC: Add struct keyword to FBRects.rects to make it C compiler safe

Diego Garza 4 gadi atpakaļ
vecāks
revīzija
c37ad5a1d3
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      Userland/Libraries/LibC/sys/ioctl_numbers.h

+ 1 - 1
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