diff options
Diffstat (limited to 'Userland/Utilities/matroska.cpp')
-rw-r--r-- | Userland/Utilities/matroska.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/matroska.cpp b/Userland/Utilities/matroska.cpp index 061078ca42..d3630ca650 100644 --- a/Userland/Utilities/matroska.cpp +++ b/Userland/Utilities/matroska.cpp @@ -11,7 +11,7 @@ ErrorOr<int> serenity_main(Main::Arguments) { auto document = Video::MatroskaReader::parse_matroska_from_file("/home/anon/Videos/test-webm.webm"); if (!document) { - return Error::from_string_literal("Failed to parse :("sv); + return Error::from_string_literal("Failed to parse :("); } outln("DocType is {}", document->header().doc_type.characters()); |