Fix copyright lines
[folly.git] / folly / experimental / symbolizer / StackTrace.cpp
index c58af4a7c43705992cecb186dcc48ebe3d50df44..bca09b001721ab9813f8676102fd19a8aafd7275 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Facebook, Inc.
+ * Copyright 2013-present Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -13,7 +13,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 #include <folly/experimental/symbolizer/StackTrace.h>
 
 // Must be first to ensure that UNW_LOCAL_ONLY is defined
@@ -25,7 +24,7 @@ namespace symbolizer {
 
 ssize_t getStackTrace(uintptr_t* addresses, size_t maxAddresses) {
   static_assert(
-      sizeof(uintptr_t) == sizeof(void*), "uinptr_t / pointer size mismatch");
+      sizeof(uintptr_t) == sizeof(void*), "uintptr_t / pointer size mismatch");
   // The libunwind documentation says that unw_backtrace is async-signal-safe
   // but, as of libunwind 1.0.1, it isn't (tdep_trace allocates memory on
   // x86_64)