svn commit: r228720 - head/usr.sbin/timed/timed

Dimitry Andric dim at FreeBSD.org
Mon Dec 19 20:33:54 UTC 2011


Author: dim
Date: Mon Dec 19 20:33:53 2011
New Revision: 228720
URL: http://svn.freebsd.org/changeset/base/228720

Log:
  Fix r228719; when you use intmax_t, you need stdint.h.
  
  Pointy hat to:	dim
  MFC after:	1 week

Modified:
  head/usr.sbin/timed/timed/globals.h

Modified: head/usr.sbin/timed/timed/globals.h
==============================================================================
--- head/usr.sbin/timed/timed/globals.h	Mon Dec 19 20:29:50 2011	(r228719)
+++ head/usr.sbin/timed/timed/globals.h	Mon Dec 19 20:33:53 2011	(r228720)
@@ -41,6 +41,7 @@
 #include <errno.h>
 #include <limits.h>
 #include <netdb.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>


More information about the svn-src-head mailing list