diff options
author | des <des@FreeBSD.org> | 2005-12-14 00:15:11 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2005-12-14 00:15:11 +0000 |
commit | d40bda1cd272e7d30f8998f9f75273296ea1c654 (patch) | |
tree | c8cef525141e9940fa35532b25f77af7b9af5ec6 /sys/tools | |
parent | d44b29aa0d22daf1081015987f2dd13417d4f1b3 (diff) | |
download | FreeBSD-src-d40bda1cd272e7d30f8998f9f75273296ea1c654.zip FreeBSD-src-d40bda1cd272e7d30f8998f9f75273296ea1c654.tar.gz |
Nuke vnodeop_desc.vdesc_transports, which has been unused since the dawn
of time (or the inception of ncvs, whichever came last)
Diffstat (limited to 'sys/tools')
-rw-r--r-- | sys/tools/vnode_if.awk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/tools/vnode_if.awk b/sys/tools/vnode_if.awk index 8c992fe..845f36b 100644 --- a/sys/tools/vnode_if.awk +++ b/sys/tools/vnode_if.awk @@ -184,7 +184,6 @@ if (cfile) { " VDESC_NO_OFFSET,\n" \ " VDESC_NO_OFFSET,\n" \ " VDESC_NO_OFFSET,\n" \ - " NULL,\n" \ "};\n"); } @@ -413,7 +412,7 @@ while ((getline < srcfile) > 0) { # componentname printc("\t" find_arg_with_type("struct componentname *") ","); # transport layer information - printc("\tNULL,\n};\n"); + printc("};\n"); } } |