Module Name:    src
Committed By:   msaitoh
Date:           Tue Nov  4 03:05:43 UTC 2014

Modified Files:
        src/sbin/fsck_msdos: boot.c

Log Message:
 Add #include <inttypes.h> for intmax_t to fix compile error.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sbin/fsck_msdos/boot.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/fsck_msdos/boot.c
diff -u src/sbin/fsck_msdos/boot.c:1.17 src/sbin/fsck_msdos/boot.c:1.18
--- src/sbin/fsck_msdos/boot.c:1.17	Mon Nov  3 18:55:04 2014
+++ src/sbin/fsck_msdos/boot.c	Tue Nov  4 03:05:43 2014
@@ -27,12 +27,13 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: boot.c,v 1.17 2014/11/03 18:55:04 jakllsch Exp $");
+__RCSID("$NetBSD: boot.c,v 1.18 2014/11/04 03:05:43 msaitoh Exp $");
 #endif /* not lint */
 
 #include <stdlib.h>
 #include <string.h>
 #include <strings.h>
+#include <inttypes.h>
 #include <stdio.h>
 #include <unistd.h>
 

Reply via email to