1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:57:35 +00:00

LibC: Change the type of FBProperties' fields from bool to unsigned char

The bool type is not available in C89.
This commit is contained in:
Idan Horowitz 2021-10-28 00:26:03 +03:00 committed by Andreas Kling
parent 2882a90dec
commit f22787dd39

View file

@ -19,10 +19,10 @@ struct winsize {
}; };
struct FBProperties { struct FBProperties {
bool multihead_support; unsigned char multihead_support;
bool doublebuffer_support; unsigned char doublebuffer_support;
bool flushing_support; unsigned char flushing_support;
bool partial_flushing_support; unsigned char partial_flushing_support;
}; };
struct FBHeadProperties { struct FBHeadProperties {