clang-format all files

This commit is contained in:
ridiculousfish
2019-06-03 20:30:48 -07:00
parent d1fc8d5f71
commit fc99d6c7af
13 changed files with 30 additions and 28 deletions

View File

@@ -2436,7 +2436,7 @@ void redirect_tty_output() {
[[noreturn]] void __fish_assert(const char *msg, const char *file, size_t line, int error) {
if (error) {
FLOGF(error, L"%s:%zu: failed assertion: %s: errno %d (%s)", file, line, msg, error,
std::strerror(error));
std::strerror(error));
} else {
FLOGF(error, L"%s:%zu: failed assertion: %s", file, line, msg);
}