Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/usr.bin/audio/play Pull up revision 1.24 (via patch, re...



details:   https://anonhg.NetBSD.org/src/rev/66e4d3c413fa
branches:  netbsd-1-5
changeset: 490876:66e4d3c413fa
user:      he <he%NetBSD.org@localhost>
date:      Wed Mar 14 23:22:12 2001 +0000

description:
Pull up revision 1.24 (via patch, requested by he):
  Fix LP64 format/type inconsistency.

diffstat:

 usr.bin/audio/play/play.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 065089f90128 -r 66e4d3c413fa usr.bin/audio/play/play.c
--- a/usr.bin/audio/play/play.c Tue Mar 13 21:38:26 2001 +0000
+++ b/usr.bin/audio/play/play.c Wed Mar 14 23:22:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: play.c,v 1.17.4.1 2001/03/11 21:30:28 he Exp $ */
+/*     $NetBSD: play.c,v 1.17.4.2 2001/03/14 23:22:12 he Exp $ */
 
 /*
  * Copyright (c) 1999 Matthew R. Green
@@ -240,7 +240,7 @@
                        filesize -= hdrlen;
                        addr = (char *)addr + hdrlen;
                        if (filesize < datasize || datasize == 0) {
-                               warn("bogus datasize:%u", datasize);
+                               warn("bogus datasize: %lu", (long)datasize);
                                datasize = filesize;
                        }
 



Home | Main Index | Thread Index | Old Index