Author: ngie
Date: Sun Dec 13 03:40:43 2015
New Revision: 292140
URL: https://svnweb.freebsd.org/changeset/base/292140

Log:
  MFC r292004:
  
  Fix compilation when -DDEBUG is defined by adding inttypes.h #include
  for intmax_t
  
  Differential Revision: https://reviews.freebsd.org/D4434
  Reported by: cppcheck
  Reviewed by: jhb
  Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/10/lib/libc/stdio/open_memstream.c
  stable/10/lib/libc/stdio/open_wmemstream.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/stdio/open_memstream.c
==============================================================================
--- stable/10/lib/libc/stdio/open_memstream.c   Sun Dec 13 03:38:19 2015        
(r292139)
+++ stable/10/lib/libc/stdio/open_memstream.c   Sun Dec 13 03:40:43 2015        
(r292140)
@@ -31,6 +31,9 @@ __FBSDID("$FreeBSD$");
 #include "namespace.h"
 #include <assert.h>
 #include <errno.h>
+#ifdef DEBUG
+#include <inttypes.h>
+#endif
 #include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>

Modified: stable/10/lib/libc/stdio/open_wmemstream.c
==============================================================================
--- stable/10/lib/libc/stdio/open_wmemstream.c  Sun Dec 13 03:38:19 2015        
(r292139)
+++ stable/10/lib/libc/stdio/open_wmemstream.c  Sun Dec 13 03:40:43 2015        
(r292140)
@@ -31,6 +31,9 @@ __FBSDID("$FreeBSD$");
 #include "namespace.h"
 #include <assert.h>
 #include <errno.h>
+#ifdef DEBUG
+#include <inttypes.h>
+#endif
 #include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to