Fixed printf format errors.
This commit is contained in:
parent
7abda51bbc
commit
ce79296f87
sbin
@ -45,7 +45,7 @@ char copyright[] =
|
|||||||
static char sccsid[] = "@(#)mount_umap.c 8.5 (Berkeley) 4/26/95";
|
static char sccsid[] = "@(#)mount_umap.c 8.5 (Berkeley) 4/26/95";
|
||||||
*/
|
*/
|
||||||
static const char rcsid[] =
|
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 */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@ -197,7 +197,7 @@ main(argc, argv)
|
|||||||
#endif /* MAPSECURITY */
|
#endif /* MAPSECURITY */
|
||||||
|
|
||||||
if ((fscanf(gfp, "%d\n", &gnentries)) != 1)
|
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)
|
if (gnentries > MAPFILEENTRIES)
|
||||||
errx(EX_DATAERR,
|
errx(EX_DATAERR,
|
||||||
"maximum number of entries is %d%s", GMAPFILEENTRIES, not);
|
"maximum number of entries is %d%s", GMAPFILEENTRIES, not);
|
||||||
|
@ -45,7 +45,7 @@ char copyright[] =
|
|||||||
static char sccsid[] = "@(#)mount_umap.c 8.5 (Berkeley) 4/26/95";
|
static char sccsid[] = "@(#)mount_umap.c 8.5 (Berkeley) 4/26/95";
|
||||||
*/
|
*/
|
||||||
static const char rcsid[] =
|
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 */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@ -197,7 +197,7 @@ main(argc, argv)
|
|||||||
#endif /* MAPSECURITY */
|
#endif /* MAPSECURITY */
|
||||||
|
|
||||||
if ((fscanf(gfp, "%d\n", &gnentries)) != 1)
|
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)
|
if (gnentries > MAPFILEENTRIES)
|
||||||
errx(EX_DATAERR,
|
errx(EX_DATAERR,
|
||||||
"maximum number of entries is %d%s", GMAPFILEENTRIES, not);
|
"maximum number of entries is %d%s", GMAPFILEENTRIES, not);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user