Module Name:    src
Committed By:   dholland
Date:           Sun Aug 26 09:34:17 UTC 2012

Modified Files:
        src/sbin/fsck_ffs: pass6.c

Log Message:
stdlib.h, not malloc.h


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sbin/fsck_ffs/pass6.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_ffs/pass6.c
diff -u src/sbin/fsck_ffs/pass6.c:1.3 src/sbin/fsck_ffs/pass6.c:1.4
--- src/sbin/fsck_ffs/pass6.c:1.3	Tue Jun  7 14:56:12 2011
+++ src/sbin/fsck_ffs/pass6.c	Sun Aug 26 09:34:17 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: pass6.c,v 1.3 2011/06/07 14:56:12 bouyer Exp $ */
+/* $NetBSD: pass6.c,v 1.4 2012/08/26 09:34:17 dholland Exp $ */
 /*-
   * Copyright (c) 2010 Manuel Bouyer
   * All rights reserved.
@@ -35,7 +35,7 @@
 
 #include <err.h>
 #include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <ufs/ufs/quota2.h>
 
 #include "fsutil.h"

Reply via email to