From e6506681fa644c9f7149e9b58a2ee3b7336b0b22 Mon Sep 17 00:00:00 2001 From: Victor Costan Date: Thu, 30 Apr 2020 01:03:12 +0000 Subject: [PATCH] Fix accidental double std:: qualifiers. PiperOrigin-RevId: 309136120 --- snappy-test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }