diff options
author | 2023-08-10 23:54:44 +0000 | |
---|---|---|
committer | 2023-08-28 23:26:11 +0000 | |
commit | 3815d34e5f941909ceee9e879e309991c3d2a1d0 (patch) | |
tree | 35344372ca85cf8916d88f1294d79e31f77a1fd6 /tools/obbtool/Main.cpp | |
parent | 6c8fb01159bf760c751e9fc3937512e4027d9699 (diff) |
Use String8/16 c_str
Bug: 295394788
Test: make checkbuild
Change-Id: I538720d4de2dcc038b417048209782ff605b7e30
Diffstat (limited to 'tools/obbtool/Main.cpp')
-rw-r--r-- | tools/obbtool/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/obbtool/Main.cpp b/tools/obbtool/Main.cpp index 64808c0a755f..70140685e37e 100644 --- a/tools/obbtool/Main.cpp +++ b/tools/obbtool/Main.cpp @@ -135,7 +135,7 @@ void doInfo(const char* filename) { } printf("OBB info for '%s':\n", filename); - printf("Package name: %s\n", obb->getPackageName().string()); + printf("Package name: %s\n", obb->getPackageName().c_str()); printf(" Version: %d\n", obb->getVersion()); printf(" Flags: 0x%08x\n", obb->getFlags()); printf(" Overlay: %s\n", obb->isOverlay() ? "true" : "false"); |