diff options
author | Kostis Sagonas <[email protected]> | 2013-10-09 17:08:05 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2013-10-09 17:08:05 +0200 |
commit | 3a481b4a687803b69ede848a75299b4b277f4296 (patch) | |
tree | e2c5de5470133bc58703fc94cdc0c29746d6e771 /lib/dialyzer/test/small_SUITE_data/src | |
parent | d25ed2cf7161c22544a667464fe4d3f3f156a9db (diff) | |
download | otp-3a481b4a687803b69ede848a75299b4b277f4296.tar.gz otp-3a481b4a687803b69ede848a75299b4b277f4296.tar.bz2 otp-3a481b4a687803b69ede848a75299b4b277f4296.zip |
Adopt a convention about unknown modules
Diffstat (limited to 'lib/dialyzer/test/small_SUITE_data/src')
-rw-r--r-- | lib/dialyzer/test/small_SUITE_data/src/gencall.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/test/small_SUITE_data/src/gencall.erl b/lib/dialyzer/test/small_SUITE_data/src/gencall.erl index d2875c9df1..762be55007 100644 --- a/lib/dialyzer/test/small_SUITE_data/src/gencall.erl +++ b/lib/dialyzer/test/small_SUITE_data/src/gencall.erl @@ -7,6 +7,6 @@ f() -> gen_server:call(1,2,3), ets:lookup(1,2,3), - gencall2:foo(), + some_mod:some_function(), gencall:foo(), gen_server:handle_cast(1,2). |