diff options
author | Hans Bolinder <[email protected]> | 2018-06-08 08:50:41 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-06-08 08:50:41 +0200 |
commit | 3207156b2f9b5400dc3a24a3e91dd02a54c4f503 (patch) | |
tree | a8a7893f5c74153e3b1ca3d384a0a2bc849385f4 /lib/erl_interface/src | |
parent | 8376b2cfcc4ab37ea398c2c564d2ba64d485896a (diff) | |
parent | 59c41bba956bf399a195c2f1c8c1192073853630 (diff) | |
download | otp-3207156b2f9b5400dc3a24a3e91dd02a54c4f503.tar.gz otp-3207156b2f9b5400dc3a24a3e91dd02a54c4f503.tar.bz2 otp-3207156b2f9b5400dc3a24a3e91dd02a54c4f503.zip |
Merge branch 'hasse/eliminate_lib_module/OTP-15072/ERL-634'
* hasse/eliminate_lib_module/OTP-15072/ERL-634:
stdlib: Move eval_str/1 from mod_esi to erl_eval
Diffstat (limited to 'lib/erl_interface/src')
-rw-r--r-- | lib/erl_interface/src/prog/erl_call.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/erl_interface/src/prog/erl_call.c b/lib/erl_interface/src/prog/erl_call.c index 66265b3e6a..52ad6885e8 100644 --- a/lib/erl_interface/src/prog/erl_call.c +++ b/lib/erl_interface/src/prog/erl_call.c @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 1996-2017. All Rights Reserved. + * Copyright Ericsson AB 1996-2018. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -554,7 +554,7 @@ int erl_call(int argc, char **argv) /* erl_format("[~w]", erl_mk_binary(evalbuf,len))) */ - if (ei_rpc(&ec, fd, "lib", "eval_str", p, i, &reply) < 0) { + if (ei_rpc(&ec, fd, "erl_eval", "eval_str", p, i, &reply) < 0) { fprintf(stderr,"erl_call: evaluating input failed: %s\n", evalbuf); free(p); |