diff options
author | Nikolay Sturm <sturm@cvs.openbsd.org> | 2003-10-22 21:03:36 +0000 |
---|---|---|
committer | Nikolay Sturm <sturm@cvs.openbsd.org> | 2003-10-22 21:03:36 +0000 |
commit | b121c0a9ca1422179b257866630c9b6f47cd4db7 (patch) | |
tree | 6b44821be14230d334810abffb3a2ae1876737e6 /bin | |
parent | aab573d1cdc97d9e28301a8af662a260626ec09d (diff) |
from NetBSD:
initialise an integer field with 0 instead of NULL
ok provos, itojun, avsm, fgsch
Diffstat (limited to 'bin')
-rw-r--r-- | bin/systrace/openbsd-syscalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/systrace/openbsd-syscalls.c b/bin/systrace/openbsd-syscalls.c index 0f1436ac0ed..6e275c2a245 100644 --- a/bin/systrace/openbsd-syscalls.c +++ b/bin/systrace/openbsd-syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openbsd-syscalls.c,v 1.22 2003/10/08 16:32:44 sturm Exp $ */ +/* $OpenBSD: openbsd-syscalls.c,v 1.23 2003/10/22 21:03:35 sturm Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -104,7 +104,7 @@ static struct emulation emulations[] = { { "bsdos", bsdos_syscallnames, BSDOS_SYS_MAXSYSCALL }, { "freebsd", freebsd_syscallnames, FREEBSD_SYS_MAXSYSCALL }, { "netbsd", netbsd_syscallnames, NETBSD_SYS_MAXSYSCALL }, - { NULL, NULL, NULL } + { NULL, NULL, 0 } }; struct obsd_data { |