diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-03-27 15:26:32 -0700 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-03-27 16:41:39 -0700 |
commit | 4674577d80e9b11f7311b1ad88e1ec45a0313591 (patch) | |
tree | 071725e1b2825ace11eea5bd508602821c9e4c39 /Userland/DevTools/HackStudio/Git | |
parent | f3f3b32a0054d523cd27483622a04dabacb5f869 (diff) | |
download | serenity-4674577d80e9b11f7311b1ad88e1ec45a0313591.zip |
Everywhere: Rename CommandResult stdout, stderr members to output, error
The names stdout / stderr are bound to conflict with existing
declarations when compiling against other LibC's. The build on OpenBSD
is broken for this reason at the moment.
Lets rename the members to more generic names to resolve the situation.
Diffstat (limited to 'Userland/DevTools/HackStudio/Git')
-rw-r--r-- | Userland/DevTools/HackStudio/Git/GitRepo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/Git/GitRepo.cpp b/Userland/DevTools/HackStudio/Git/GitRepo.cpp index aee1ac9b6b..d0109ce0f3 100644 --- a/Userland/DevTools/HackStudio/Git/GitRepo.cpp +++ b/Userland/DevTools/HackStudio/Git/GitRepo.cpp @@ -83,7 +83,7 @@ String GitRepo::command_wrapper(Vector<String> const& command_parts, String cons auto result = Core::command("git", command_parts, LexicalPath(chdir)); if (result.is_error() || result.value().exit_code != 0) return {}; - return result.value().stdout; + return result.value().output; } bool GitRepo::git_is_installed() |