svn commit: r364024 - head/usr.sbin/makefs/msdos

Alex Richardson arichardson at FreeBSD.org
Fri Aug 7 16:04:07 UTC 2020


Author: arichardson
Date: Fri Aug  7 16:04:06 2020
New Revision: 364024
URL: https://svnweb.freebsd.org/changeset/base/364024

Log:
  makefs: Drop unnecessary sys/clock.h include
  
  This breaks the build on macOS where this header doesn't exist. I could
  also add a compat header to tools/build/cross-build but since it's not
  needed removing it seems like the better solution.

Modified:
  head/usr.sbin/makefs/msdos/msdosfs_vnops.c

Modified: head/usr.sbin/makefs/msdos/msdosfs_vnops.c
==============================================================================
--- head/usr.sbin/makefs/msdos/msdosfs_vnops.c	Fri Aug  7 16:04:01 2020	(r364023)
+++ head/usr.sbin/makefs/msdos/msdosfs_vnops.c	Fri Aug  7 16:04:06 2020	(r364024)
@@ -53,7 +53,6 @@
 __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
-#include <sys/clock.h>
 #include <sys/errno.h>
 #include <sys/mman.h>
 #include <sys/time.h>


More information about the svn-src-head mailing list