diff options
author | Björn Gustavsson <[email protected]> | 2013-02-14 11:55:58 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-02-14 11:55:58 +0100 |
commit | 6c9569726241220a68a25b446b4c62ad7c925822 (patch) | |
tree | 1db22d3fa59590c4349d73309a64139ecf68858e /lib/pman/src/pman_win.erl | |
parent | aadc966c0350dd1a07574b925546488ce82ce08d (diff) | |
parent | 3cfff07ca3c14fc30b3fc432678a0166fbb9908a (diff) | |
download | otp-6c9569726241220a68a25b446b4c62ad7c925822.tar.gz otp-6c9569726241220a68a25b446b4c62ad7c925822.tar.bz2 otp-6c9569726241220a68a25b446b4c62ad7c925822.zip |
Merge branch 'bjorn/remove-tuple-funs/OTP-10170'
* bjorn/remove-tuple-funs/OTP-10170:
si_sasl_supp: Eliminate use of tuple fun
pman: Eliminate use of tuple fun
Diffstat (limited to 'lib/pman/src/pman_win.erl')
-rw-r--r-- | lib/pman/src/pman_win.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pman/src/pman_win.erl b/lib/pman/src/pman_win.erl index 350bc2dd7f..a6ef6fd13e 100644 --- a/lib/pman/src/pman_win.erl +++ b/lib/pman/src/pman_win.erl @@ -546,7 +546,7 @@ name(Pid) -> %% module_data(ModuleName) -> - vformat("", catch apply({ModuleName, module_info},[])). + vformat("", catch apply(ModuleName, module_info, [])). |