mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-23 21:31:14 -03:00
Fix indentation of switch statements
This commit is contained in:
16
wildcard.cpp
16
wildcard.cpp
@@ -477,15 +477,15 @@ static wcstring file_get_desc(const wcstring &filename,
|
||||
{
|
||||
switch (err)
|
||||
{
|
||||
case ENOENT:
|
||||
{
|
||||
return COMPLETE_ROTTEN_SYMLINK_DESC;
|
||||
}
|
||||
case ENOENT:
|
||||
{
|
||||
return COMPLETE_ROTTEN_SYMLINK_DESC;
|
||||
}
|
||||
|
||||
case ELOOP:
|
||||
{
|
||||
return COMPLETE_LOOP_SYMLINK_DESC;
|
||||
}
|
||||
case ELOOP:
|
||||
{
|
||||
return COMPLETE_LOOP_SYMLINK_DESC;
|
||||
}
|
||||
}
|
||||
/*
|
||||
On unknown errors we do nothing. The file will be
|
||||
|
||||
Reference in New Issue
Block a user