svn commit: r215555 - stable/8/sbin/kldstat

Konstantin Belousov kib at FreeBSD.org
Sat Nov 20 11:14:06 UTC 2010


Author: kib
Date: Sat Nov 20 11:14:06 2010
New Revision: 215555
URL: http://svn.freebsd.org/changeset/base/215555

Log:
  MFC r215248:
  In printfile(), exit the process instead of only printing the warning.
  Adjust style.

Modified:
  stable/8/sbin/kldstat/kldstat.c
Directory Properties:
  stable/8/sbin/kldstat/   (props changed)

Modified: stable/8/sbin/kldstat/kldstat.c
==============================================================================
--- stable/8/sbin/kldstat/kldstat.c	Sat Nov 20 10:12:20 2010	(r215554)
+++ stable/8/sbin/kldstat/kldstat.c	Sat Nov 20 11:14:06 2010	(r215555)
@@ -50,14 +50,15 @@ printmod(int modid)
 	printf("\t\t%2d %s\n", stat.id, stat.name);
 }
 
-static void printfile(int fileid, int verbose)
+static void
+printfile(int fileid, int verbose)
 {
     struct kld_file_stat stat;
     int modid;
 
     stat.version = sizeof(struct kld_file_stat);
     if (kldstat(fileid, &stat) < 0)
-	warn("can't stat file id %d", fileid);
+	err(1, "can't stat file id %d", fileid);
     else
 	printf("%2d %4d %p %-8zx %s",
 	       stat.id, stat.refs, stat.address, stat.size, 


More information about the svn-src-all mailing list