Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d3b50eb authored by Ryan Prichard's avatar Ryan Prichard Committed by Gerrit Code Review
Browse files

Merge "Use operator<< with String16 rather than char16_t*" into main

parents 6169ad51 a0cf4ad9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ public:
            flags = O_RDWR;
            checkRead = checkWrite = true;
        } else {
            mErrorLog << "Invalid mode requested: " << mode.c_str() << endl;
            mErrorLog << "Invalid mode requested: " << mode << endl;
            return -EINVAL;
        }
        int fd = open(fullPath.c_str(), flags, S_IRWXU|S_IRWXG);