Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Dec 2011 20:33:53 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228720 - head/usr.sbin/timed/timed
Message-ID:  <201112192033.pBJKXrrO074038@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



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