Fix accidental double std:: qualifiers.

PiperOrigin-RevId: 309136120
This commit is contained in:
Victor Costan 2020-04-30 01:03:12 +00:00
parent 63620c06d2
commit e6506681fa
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ namespace file {
int ret = std::fwrite(str.data(), str.size(), 1, fp);
if (ret != 1) {
std::std::perror("fwrite");
std::perror("fwrite");
std::exit(1);
}