diff options
author | bde <bde@FreeBSD.org> | 1998-06-28 19:45:13 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-06-28 19:45:13 +0000 |
commit | 2c93388fd02a00e74a870baaf9c0c3a67027caa4 (patch) | |
tree | 89419c0c9421c701e075b534c0e57fb4e51a7dce /sbin/mount_umap | |
parent | c3dde99296d86e98c765c33dd644f8ce9ab2d75f (diff) | |
download | FreeBSD-src-2c93388fd02a00e74a870baaf9c0c3a67027caa4.zip FreeBSD-src-2c93388fd02a00e74a870baaf9c0c3a67027caa4.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'sbin/mount_umap')
-rw-r--r-- | sbin/mount_umap/mount_umap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount_umap/mount_umap.c b/sbin/mount_umap/mount_umap.c index 263c8d3..b182365 100644 --- a/sbin/mount_umap/mount_umap.c +++ b/sbin/mount_umap/mount_umap.c @@ -45,7 +45,7 @@ char copyright[] = static char sccsid[] = "@(#)mount_umap.c 8.5 (Berkeley) 4/26/95"; */ static const char rcsid[] = - "$Id: mount_umap.c,v 1.10 1997/03/11 12:39:32 peter Exp $"; + "$Id: mount_umap.c,v 1.11 1997/03/29 03:32:47 imp Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -197,7 +197,7 @@ main(argc, argv) #endif /* MAPSECURITY */ if ((fscanf(gfp, "%d\n", &gnentries)) != 1) - errx(EX_DATAERR, "nentries not found%s", gmapfile, not); + errx(EX_DATAERR, "%s: nentries not found%s", gmapfile, not); if (gnentries > MAPFILEENTRIES) errx(EX_DATAERR, "maximum number of entries is %d%s", GMAPFILEENTRIES, not); |