Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/bin/systrace Don't initialize an integer field with NULL.



details:   https://anonhg.NetBSD.org/src/rev/e969848c27a7
branches:  trunk
changeset: 553745:e969848c27a7
user:      fvdl <fvdl%NetBSD.org@localhost>
date:      Tue Oct 21 02:11:21 2003 +0000

description:
Don't initialize an integer field with NULL.

diffstat:

 bin/systrace/netbsd-syscalls.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1d04500b3772 -r e969848c27a7 bin/systrace/netbsd-syscalls.c
--- a/bin/systrace/netbsd-syscalls.c    Tue Oct 21 02:08:14 2003 +0000
+++ b/bin/systrace/netbsd-syscalls.c    Tue Oct 21 02:11:21 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd-syscalls.c,v 1.13 2003/08/25 09:12:45 cb Exp $  */
+/*     $NetBSD: netbsd-syscalls.c,v 1.14 2003/10/21 02:11:21 fvdl Exp $        */
 
 /*
  * Copyright 2002 Niels Provos <provos%citi.umich.edu@localhost>
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: netbsd-syscalls.c,v 1.13 2003/08/25 09:12:45 cb Exp $");
+__RCSID("$NetBSD: netbsd-syscalls.c,v 1.14 2003/10/21 02:11:21 fvdl Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -129,7 +129,7 @@
        { "svr4",       svr4_syscallnames,      SVR4_SYS_MAXSYSCALL },
        { "svr4_32",    svr4_32_syscallnames,   SVR4_32_SYS_MAXSYSCALL },
        { "ultrix",     ultrix_syscallnames,    ULTRIX_SYS_MAXSYSCALL },
-       { NULL,         NULL,                   NULL }
+       { NULL,         NULL,                   0 }
 };
 
 struct nbsd_data {



Home | Main Index | Thread Index | Old Index