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

LibCore: Default-initialize the FileWatcher event mask

This commit is contained in:
Timothy Flynn 2023-01-17 17:15:13 -05:00 committed by Tim Flynn
parent 8419ca8b78
commit 91cbdc67de

View file

@ -28,7 +28,7 @@ struct FileWatcherEvent {
ChildCreated = 1 << 3,
ChildDeleted = 1 << 4,
};
Type type;
Type type { Type::Invalid };
DeprecatedString event_path;
};