diff options
author | Henrik Nord <[email protected]> | 2015-05-26 10:52:37 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2015-05-26 10:52:40 +0200 |
commit | 032f106a1ebdbf310dd430b2169f55967e1d1a92 (patch) | |
tree | 7f94502631bfe9b460515b43a683545bd35ea828 /erts/etc/ose/run_erl.c | |
parent | 2d8a73e2099f239e75276680cda9914c852316ee (diff) | |
parent | cce681109c05ffa8cb88e83eb70ccf73c13d0c75 (diff) | |
download | otp-032f106a1ebdbf310dd430b2169f55967e1d1a92.tar.gz otp-032f106a1ebdbf310dd430b2169f55967e1d1a92.tar.bz2 otp-032f106a1ebdbf310dd430b2169f55967e1d1a92.zip |
Merge branch 'jlouis/cocci-noderef-fixes'
* jlouis/cocci-noderef-fixes:
Correct usage of sizeof() for pointer types
OTP-12771
Diffstat (limited to 'erts/etc/ose/run_erl.c')
-rw-r--r-- | erts/etc/ose/run_erl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/etc/ose/run_erl.c b/erts/etc/ose/run_erl.c index 8bc49a485e..a6499f2bf3 100644 --- a/erts/etc/ose/run_erl.c +++ b/erts/etc/ose/run_erl.c @@ -615,7 +615,7 @@ int run_erl(int argc,char **argv) { returns */ PROCESS main_pid; hunt_in_block("run_erl","main",&main_pid); - sig = alloc(sizeof(sig),ERTS_SIGNAL_RUN_ERL_DAEMON); + sig = alloc(sizeof(*sig),ERTS_SIGNAL_RUN_ERL_DAEMON); send(&sig,main_pid); sig = receive(sigsel); pid = sender(&sig); |