mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
Fixed an unused variable warning
This commit is contained in:
parent
0257b02a8c
commit
798537d47b
1 changed files with 4 additions and 2 deletions
|
@ -726,7 +726,8 @@ static void exec_prompt()
|
||||||
if (! data->left_prompt.empty())
|
if (! data->left_prompt.empty())
|
||||||
{
|
{
|
||||||
wcstring_list_t prompt_list;
|
wcstring_list_t prompt_list;
|
||||||
exec_subshell(data->left_prompt, prompt_list);
|
// status is ignored
|
||||||
|
__mark_as_unused int status = exec_subshell(data->left_prompt, prompt_list);
|
||||||
for (size_t i = 0; i < prompt_list.size(); i++)
|
for (size_t i = 0; i < prompt_list.size(); i++)
|
||||||
{
|
{
|
||||||
if (i > 0) data->left_prompt_buff += L'\n';
|
if (i > 0) data->left_prompt_buff += L'\n';
|
||||||
|
@ -737,7 +738,8 @@ static void exec_prompt()
|
||||||
if (! data->right_prompt.empty())
|
if (! data->right_prompt.empty())
|
||||||
{
|
{
|
||||||
wcstring_list_t prompt_list;
|
wcstring_list_t prompt_list;
|
||||||
exec_subshell(data->right_prompt, prompt_list);
|
// status is ignored
|
||||||
|
__mark_as_unused int status = exec_subshell(data->right_prompt, prompt_list);
|
||||||
for (size_t i = 0; i < prompt_list.size(); i++)
|
for (size_t i = 0; i < prompt_list.size(); i++)
|
||||||
{
|
{
|
||||||
// Right prompt does not support multiple lines, so just concatenate all of them
|
// Right prompt does not support multiple lines, so just concatenate all of them
|
||||||
|
|
Loading…
Reference in a new issue