Skip to content
Snippets Groups Projects
Commit 389e3815 authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Use String8/16 c_str [backup]

Bug: 295394788
Test: TH
Change-Id: I8e87ed078797cc941a16d1b2a3f96e0d668bf4ec
parent a2d740da
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ static int perform_list(const char* filename)
size_t dataSize;
err = reader.ReadEntityHeader(&key, &dataSize);
if (err == 0) {
printf(" entity: %s (%zu bytes)\n", key.string(), dataSize);
printf(" entity: %s (%zu bytes)\n", key.c_str(), dataSize);
} else {
printf(" Error reading entity header\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment