Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci No, that should be unsigned.



details:   https://anonhg.NetBSD.org/src/rev/7657de1c08d7
branches:  trunk
changeset: 330159:7657de1c08d7
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Wed Jun 25 15:04:53 2014 +0000

description:
No, that should be unsigned.

diffstat:

 sys/dev/pci/agp_i810.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 79228c9a6f5a -r 7657de1c08d7 sys/dev/pci/agp_i810.c
--- a/sys/dev/pci/agp_i810.c    Wed Jun 25 13:53:40 2014 +0000
+++ b/sys/dev/pci/agp_i810.c    Wed Jun 25 15:04:53 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: agp_i810.c,v 1.104 2014/06/25 13:10:27 riastradh Exp $ */
+/*     $NetBSD: agp_i810.c,v 1.105 2014/06/25 15:04:53 riastradh Exp $ */
 
 /*-
  * Copyright (c) 2000 Doug Rabson
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.104 2014/06/25 13:10:27 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.105 2014/06/25 15:04:53 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1094,7 +1094,7 @@
        if (offset < 0 || offset >= ((isc->gtt_size/4) << AGP_PAGE_SHIFT)) {
 #ifdef AGP_DEBUG
                printf("%s: failed"
-                   ": offset 0x%08x, shift %d, entries %"PRIdMAX"\n",
+                   ": offset 0x%08x, shift %d, entries %"PRIuMAX"\n",
                    device_xname(sc->as_dev), (int)offset, AGP_PAGE_SHIFT,
                    (uintmax_t)isc->gtt_size/4);
 #endif



Home | Main Index | Thread Index | Old Index