diff options
author | Fredrik Gustafsson <[email protected]> | 2012-08-14 15:27:47 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2012-08-14 15:27:47 +0200 |
commit | 9492bf7abbf5e43a9bdada5b0ace0432ce1f4223 (patch) | |
tree | 177515a7d4720fcb92668dd4b558dceecdabc553 /lib | |
parent | df8e67e203b83f95d1e098fec88ad5d0ad840069 (diff) | |
parent | 18943e753f7791312d89943851169e89acece8fc (diff) | |
download | otp-9492bf7abbf5e43a9bdada5b0ace0432ce1f4223.tar.gz otp-9492bf7abbf5e43a9bdada5b0ace0432ce1f4223.tar.bz2 otp-9492bf7abbf5e43a9bdada5b0ace0432ce1f4223.zip |
Merge branch 'tja/fix-base' into maint
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compiler/src/sys_pre_expand.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/sys_pre_expand.erl b/lib/compiler/src/sys_pre_expand.erl index 68bc83433e..6cea783090 100644 --- a/lib/compiler/src/sys_pre_expand.erl +++ b/lib/compiler/src/sys_pre_expand.erl @@ -119,7 +119,7 @@ expand_pmod(Fs0, St0) -> get_base(As) -> case lists:keyfind(extends, 1, As) of - {extends,[Base]} when is_atom(Base) -> + {extends,_,[Base]} when is_atom(Base) -> Base; _ -> [] |