diff options
author | Björn Gustavsson <[email protected]> | 2013-02-13 15:11:41 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-02-13 15:11:41 +0100 |
commit | cbf8958bd2611e0b9161db150b6fa9a7f2f24b58 (patch) | |
tree | d6084cbb610a61271d6dc355b9cea934dea2ad33 /lib/pman | |
parent | e55aff9434072dc9ba45b610d2e5110b0d537692 (diff) | |
download | otp-cbf8958bd2611e0b9161db150b6fa9a7f2f24b58.tar.gz otp-cbf8958bd2611e0b9161db150b6fa9a7f2f24b58.tar.bz2 otp-cbf8958bd2611e0b9161db150b6fa9a7f2f24b58.zip |
pman: Eliminate use of tuple fun
Diffstat (limited to 'lib/pman')
-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, [])). |