aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/src
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2017-07-20 16:06:27 +0200
committerSverker Eriksson <[email protected]>2017-07-20 17:26:38 +0200
commitdede6b114f0006c55f41063e73d4b28b29710b95 (patch)
treee7ace2598174e636960438935d270991f46453e0 /lib/asn1/src
parenta01de6873844ba510084090abec734c4166d71fa (diff)
downloadotp-dede6b114f0006c55f41063e73d4b28b29710b95.tar.gz
otp-dede6b114f0006c55f41063e73d4b28b29710b95.tar.bz2
otp-dede6b114f0006c55f41063e73d4b28b29710b95.zip
asn1: Fix missing quotes of external encoding call
introduced by 8e4a9864385242b962ce7446f7daa4f58cfecca5.
Diffstat (limited to 'lib/asn1/src')
-rw-r--r--lib/asn1/src/asn1ct_gen_per.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/src/asn1ct_gen_per.erl b/lib/asn1/src/asn1ct_gen_per.erl
index 28b4e46b0c..82e9326294 100644
--- a/lib/asn1/src/asn1ct_gen_per.erl
+++ b/lib/asn1/src/asn1ct_gen_per.erl
@@ -101,7 +101,7 @@ gen_encode_user(Erules,D) when is_record(D,typedef) ->
#'Externaltypereference'{module=CurrMod,type=Etype} ->
emit([{asis,enc_func(Etype)},"(Val).",nl]);
#'Externaltypereference'{module=Emod,type=Etype} ->
- emit([{asis,Emod},":",enc_func(Etype),"(Val).",nl])
+ emit([{asis,Emod},":",{asis,enc_func(Etype)},"(Val).",nl])
end.