commit | 8d3b50ebb5a527f89cff0aca655c03cff62f5268 | [log] [tgz] |
---|---|---|
author | Ryan Prichard <rprichard@google.com> | Mon Jan 08 20:54:41 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Jan 08 20:54:41 2024 +0000 |
tree | 10f26103be420bcfdb8c4a474901b3334e2e4e68 | |
parent | 6169ad514f88d14541a74e9d045cc13b67c55749 [diff] | |
parent | a0cf4ad95a1cc350f2f2c4f0a24cbf2c37c1a4d8 [diff] |
Merge "Use operator<< with String16 rather than char16_t*" into main
diff --git a/cmds/cmd/cmd.cpp b/cmds/cmd/cmd.cpp index 0ce7711..9695e07 100644 --- a/cmds/cmd/cmd.cpp +++ b/cmds/cmd/cmd.cpp
@@ -95,7 +95,7 @@ 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);