about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--absl/base/BUILD.bazel4
-rw-r--r--absl/base/call_once.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/absl/base/BUILD.bazel b/absl/base/BUILD.bazel
index 9bb7bfa14efb..ac6ffc4117ff 100644
--- a/absl/base/BUILD.bazel
+++ b/absl/base/BUILD.bazel
@@ -216,7 +216,9 @@ cc_library(
     testonly = 1,
     hdrs = ["internal/exception_testing.h"],
     copts = ABSL_TEST_COPTS,
-    visibility = ["//absl:__subpackages__"],
+    visibility = [
+        "//absl:__subpackages__",
+    ],
     deps = [
         ":config",
         "@com_google_googletest//:gtest",
diff --git a/absl/base/call_once.h b/absl/base/call_once.h
index b5fbeae5858c..fa2a536081a6 100644
--- a/absl/base/call_once.h
+++ b/absl/base/call_once.h
@@ -152,10 +152,10 @@ void CallOnceImpl(std::atomic<uint32_t>* control,
         old_control != kOnceDone) {
       ABSL_RAW_LOG(
           FATAL,
-          "Unexpected value for control word: %d. Either the control word "
+          "Unexpected value for control word: %x. Either the control word "
           "has non-static storage duration (where GoogleOnceDynamic might "
           "be appropriate), or there's been a memory corruption.",
-          old_control);
+          static_cast<unsigned>(old_control));
     }
   }
 #endif  // NDEBUG