diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2023-04-30 17:29:48 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-05-09 11:18:46 +0200 |
commit | 2a91245a96c433c0bd2e00a238029b33cacd1fdb (patch) | |
tree | e8d246b535048a92d68d2b0083b1cc4905f1b5cf | |
parent | 8200d1f68b6d3c47c121ea4c609b5f4be333b219 (diff) | |
download | serenity-2a91245a96c433c0bd2e00a238029b33cacd1fdb.zip |
image: Initialize `strip_color_profile` with a default value
-rw-r--r-- | Userland/Utilities/image.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/image.cpp b/Userland/Utilities/image.cpp index 61d5fee05e..1353bdc0f2 100644 --- a/Userland/Utilities/image.cpp +++ b/Userland/Utilities/image.cpp @@ -36,7 +36,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) StringView convert_color_profile_path; args_parser.add_option(convert_color_profile_path, "Load color profile from file and convert output image from current profile to loaded profile", "convert-to-color-profile", {}, "FILE"); - bool strip_color_profile; + bool strip_color_profile = false; args_parser.add_option(strip_color_profile, "Do not write color profile to output", "strip-color-profile", {}); args_parser.parse(arguments); |