Commit b586f56e authored by Joel Sing's avatar Joel Sing

syscall: fix mksysnum_dragonfly.pl

The format of the DragonFly BSD syscalls.master file has changed
slightly - update mksysnum_dragonfly.pl to match.

LGTM=mikioh.mikioh
R=golang-codereviews, mikioh.mikioh
CC=golang-codereviews
https://golang.org/cl/71460044
parent 18019dff
......@@ -20,7 +20,7 @@ const (
EOF
while(<>){
if(/^([0-9]+)\s+STD\s+\S+\s+({ \S+\s+(\w+).*)$/){
if(/^([0-9]+)\s+STD\s+({ \S+\s+(\w+).*)$/){
my $num = $1;
my $proto = $2;
my $name = "SYS_$3";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment