svn commit: r350321 - head/sys/sys
Rick Macklem
rmacklem at FreeBSD.org
Thu Jul 25 06:48:31 UTC 2019
Author: rmacklem
Date: Thu Jul 25 06:48:30 2019
New Revision: 350321
URL: https://svnweb.freebsd.org/changeset/base/350321
Log:
r350320 committed the wrong version of generated syscall.mk.
This commit is for the correct version. (The incorrect one had the order
of the last two entries reversed, due to my testing with copy_file_range
at 568 instead of 569.) This misordering should not have been a problem,
but is now fixed.
Modified:
head/sys/sys/syscall.mk
Modified: head/sys/sys/syscall.mk
==============================================================================
--- head/sys/sys/syscall.mk Thu Jul 25 06:35:21 2019 (r350320)
+++ head/sys/sys/syscall.mk Thu Jul 25 06:48:30 2019 (r350321)
@@ -409,5 +409,5 @@ MIASM = \
fhlink.o \
fhlinkat.o \
fhreadlink.o \
- copy_file_range.o \
- funlinkat.o
+ funlinkat.o \
+ copy_file_range.o
More information about the svn-src-head
mailing list