diff --git a/Userland/Libraries/LibCore/FileWatcher.h b/Userland/Libraries/LibCore/FileWatcher.h index 2a0ece2df8..1fef985aba 100644 --- a/Userland/Libraries/LibCore/FileWatcher.h +++ b/Userland/Libraries/LibCore/FileWatcher.h @@ -28,7 +28,7 @@ struct FileWatcherEvent { ChildCreated = 1 << 3, ChildDeleted = 1 << 4, }; - Type type; + Type type { Type::Invalid }; DeprecatedString event_path; };