mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-25 10:11:17 -03:00
Don't call a variable "stdin"
Musl has a macro that interferes.
This commit is contained in:
@@ -318,7 +318,7 @@ void init_input() {
|
||||
}
|
||||
}
|
||||
|
||||
inputter_t::inputter_t(parser_t &parser, int stdin) : event_queue_(stdin), parser_(parser.shared()) {}
|
||||
inputter_t::inputter_t(parser_t &parser, int in) : event_queue_(in), parser_(parser.shared()) {}
|
||||
|
||||
void inputter_t::function_push_arg(wchar_t arg) { input_function_args_.push_back(arg); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user