diff options
author | Matthew Bauer <matthew.bauer@obsidian.systems> | 2020-06-25 16:27:00 -0400 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-29 20:34:26 +0000 |
commit | 88cf6ffce3c01f4f1c50250ef46c0d7bf23f41c7 (patch) | |
tree | d90ba4c36fe87fa71e0719fd1f1169ae2bec6f00 /src/nix/ls.cc | |
parent | 58bc3b65789a6c1216abb0dfb4f553b2a6b7f479 (diff) |
Rename logging->stdout to logging->stdout_
musl doesn't like this identifier
Diffstat (limited to 'src/nix/ls.cc')
-rw-r--r-- | src/nix/ls.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/ls.cc b/src/nix/ls.cc index d2157f2d4..59922a8de 100644 --- a/src/nix/ls.cc +++ b/src/nix/ls.cc @@ -37,11 +37,11 @@ struct MixLs : virtual Args, MixJSON auto line = fmt("%s %20d %s", tp, st.fileSize, relPath); if (st.type == FSAccessor::Type::tSymlink) line += " -> " + accessor->readLink(curPath); - logger->stdout(line); + logger->stdout_(line); if (recursive && st.type == FSAccessor::Type::tDirectory) doPath(st, curPath, relPath, false); } else { - logger->stdout(relPath); + logger->stdout_(relPath); if (recursive) { auto st = accessor->stat(curPath); if (st.type == FSAccessor::Type::tDirectory) |