Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1323857

[PATCH] signal: use sizeof() instead of sizeof

From Wei Tang <tangwei@cmss.chinamobile.com>
Newsgroups linux.kernel
Subject [PATCH] signal: use sizeof() instead of sizeof
Date 2016-02-02 08:50 +0100
Message-ID <qXDSO-7AO-17@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


This patch fixes the checkpatch.pl warning to signal.c:

WARNING: sizeof info should be sizeof(info)

Signed-off-by: Wei Tang <tangwei@cmss.chinamobile.com>
---
 kernel/signal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/signal.c b/kernel/signal.c
index f3f1f7a..13b267a 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -1900,7 +1900,7 @@ static void ptrace_do_notify(int signr, int exit_code, int why)
 {
 	siginfo_t info;
 
-	memset(&info, 0, sizeof info);
+	memset(&info, 0, sizeof(info));
 	info.si_signo = signr;
 	info.si_code = exit_code;
 	info.si_pid = task_pid_vnr(current);
-- 
1.9.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] signal: use sizeof() instead of sizeof Wei Tang <tangwei@cmss.chinamobile.com> - 2016-02-02 08:50 +0100
  Re: [PATCH] signal: use sizeof() instead of sizeof Richard Weinberger <richard@nod.at> - 2016-02-02 09:00 +0100
    Re: 答复: [PATCH] signal: use sizeof() instead of sizeof Richard Weinberger <richard@nod.at> - 2016-02-02 09:20 +0100

csiph-web