Fixed printf format errors.

This commit is contained in:
Bruce Evans 1998-06-28 19:36:49 +00:00
parent b10466261e
commit 7abda51bbc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37237
3 changed files with 7 additions and 8 deletions

View File

@ -30,7 +30,7 @@
#ifndef lint
static const char rcsid[] =
"$Id$";
"$Id: fsdbutil.c,v 1.7 1998/06/15 07:12:20 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
@ -125,7 +125,7 @@ printstat(cp, inum, dp)
puts("fifo");
break;
}
printf("I=%lu MODE=%o SIZE=%qu", inum, dp->di_mode, dp->di_size);
printf("I=%lu MODE=%o SIZE=%qu", (u_long)inum, dp->di_mode, dp->di_size);
t = dp->di_mtime;
p = ctime(&t);
printf("\n\tMTIME=%15.15s %4.4s [%d nsec]", &p[4], &p[20],

View File

@ -27,7 +27,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: ldconfig.c,v 1.20 1997/08/22 04:42:12 peter Exp $
* $Id: ldconfig.c,v 1.21 1998/05/26 20:12:50 sos Exp $
*/
#include <sys/param.h>
@ -507,14 +507,13 @@ readhints()
hdr = (struct hints_header *)addr;
if (HH_BADMAG(*hdr)) {
warnx("%s: Bad magic: %o",
hints_file, hdr->hh_magic);
warnx("%s: Bad magic: %lo", hints_file, hdr->hh_magic);
return -1;
}
if (hdr->hh_version != LD_HINTS_VERSION_1 &&
hdr->hh_version != LD_HINTS_VERSION_2) {
warnx("Unsupported version: %d", hdr->hh_version);
warnx("Unsupported version: %ld", hdr->hh_version);
return -1;
}

View File

@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: modload.c,v 1.19 1997/06/29 20:38:38 bde Exp $
* $Id: modload.c,v 1.20 1997/08/21 22:33:59 jlemon Exp $
*/
#include <stdio.h>
@ -389,7 +389,7 @@ main(argc, argv)
err(15, "error fetching module stats for post-install");
sprintf(id, "%d", sbuf.id);
sprintf(type, "0x%x", sbuf.type);
sprintf(offset, "%d", sbuf.offset);
sprintf(offset, "%lu", sbuf.offset);
/* XXX the modload docs say that drivers can install bdevsw &
cdevsw, but the interface only supports one at a time. sigh. */