Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Aug 2016 15:56:19 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r304563 - head/sys/contrib/cloudabi
Message-ID:  <201608211556.u7LFuJJe060116@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ed
Date: Sun Aug 21 15:56:19 2016
New Revision: 304563
URL: https://svnweb.freebsd.org/changeset/base/304563

Log:
  Fix s/64/32/ conversion errors in the system call table.
  
  We should pull in the 32 bit headers when using this system call table.

Modified:
  head/sys/contrib/cloudabi/syscalls32.master

Modified: head/sys/contrib/cloudabi/syscalls32.master
==============================================================================
--- head/sys/contrib/cloudabi/syscalls32.master	Sun Aug 21 15:45:12 2016	(r304562)
+++ head/sys/contrib/cloudabi/syscalls32.master	Sun Aug 21 15:56:19 2016	(r304563)
@@ -30,9 +30,9 @@
 #include <sys/sysent.h>
 #include <sys/sysproto.h>
 
-#include <contrib/cloudabi/cloudabi64_types.h>
+#include <contrib/cloudabi/cloudabi32_types.h>
 
-#include <compat/cloudabi64/cloudabi64_proto.h>
+#include <compat/cloudabi32/cloudabi32_proto.h>
 
 0	AUE_NULL	STD	{ cloudabi_timestamp_t \
 					cloudabi_sys_clock_res_get( \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608211556.u7LFuJJe060116>