diff options
Diffstat (limited to 'init/service_parser.cpp')
-rw-r--r-- | init/service_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/service_parser.cpp b/init/service_parser.cpp index 1d431e3a6..3f817921f 100644 --- a/init/service_parser.cpp +++ b/init/service_parser.cpp @@ -208,7 +208,7 @@ Result<void> ServiceParser::ParseKeycodes(std::vector<std::string>&& args) { // If the property is not set, it defaults to none, in which case there are no keycodes // for this service. - if (expanded == "none") { + if (*expanded == "none") { return {}; } |