diff options
Diffstat (limited to 'lib/stdlib')
| -rw-r--r-- | lib/stdlib/src/filename.erl | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/stdlib/src/filename.erl b/lib/stdlib/src/filename.erl index 3f528c0adb..59d6de5d10 100644 --- a/lib/stdlib/src/filename.erl +++ b/lib/stdlib/src/filename.erl @@ -915,10 +915,8 @@ make_abs_path(BasePath, Path) ->      join(BasePath, Path).  major_os_type() -> -    case os:type() of -	{OsT, _} -> OsT; -	OsT -> OsT -    end. +    {OsT, _} = os:type(), +    OsT.  %% flatten(List)  %%  Flatten a list, also accepting atoms.  | 
