summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Costan <costan@google.com>2020-04-30 01:03:12 +0000
committerVictor Costan <costan@google.com>2020-04-30 01:19:26 +0000
commite6506681fa644c9f7149e9b58a2ee3b7336b0b22 (patch)
tree1857a6caa721a88cebea5b3ab5672925e4d0e8f6
parent63620c06d20f4ccac6e5c85c607f4e8698428ec8 (diff)
downloadsnappy-git-e6506681fa644c9f7149e9b58a2ee3b7336b0b22.tar.gz
Fix accidental double std:: qualifiers.
PiperOrigin-RevId: 309136120
-rw-r--r--snappy-test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/snappy-test.h b/snappy-test.h
index 633c69b..c9a777d 100644
--- a/snappy-test.h
+++ b/snappy-test.h
@@ -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);
}