X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FSafeAssert.cpp;h=4f2db41a2d4515bbe60b1bf72cea80a748fb5f2c;hb=de821c225980359651a07b670174ae90d4f655c8;hp=a8a64da246ef8c072a3307fd4ec6ef5e2ee889da;hpb=321542683a01c3f334047531e9b487f047129775;p=folly.git diff --git a/folly/SafeAssert.cpp b/folly/SafeAssert.cpp index a8a64da2..4f2db41a 100644 --- a/folly/SafeAssert.cpp +++ b/folly/SafeAssert.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2016 Facebook, Inc. + * Copyright 2017 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,15 +22,18 @@ namespace folly { namespace detail { namespace { +void writeStderr(const char* s, size_t len) { + writeFull(STDERR_FILENO, s, len); +} void writeStderr(const char* s) { - writeFull(STDERR_FILENO, s, strlen(s)); + writeStderr(s, strlen(s)); } } // namespace void assertionFailure(const char* expr, const char* msg, const char* file, unsigned int line, const char* function) { writeStderr("\n\nAssertion failure: "); - writeStderr(expr); + writeStderr(expr + 1, strlen(expr) - 2); writeStderr("\nMessage: "); writeStderr(msg); writeStderr("\nFile: ");