Source-Changes-HG archive

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

[src/trunk]: src/sys/uvm Fix typo



details:   https://anonhg.NetBSD.org/src/rev/722de0e55c6d
branches:  trunk
changeset: 822458:722de0e55c6d
user:      ozaki-r <ozaki-r%NetBSD.org@localhost>
date:      Tue Mar 21 02:24:35 2017 +0000

description:
Fix typo

diffstat:

 sys/uvm/uvm_bio.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c8f70eb5e971 -r 722de0e55c6d sys/uvm/uvm_bio.c
--- a/sys/uvm/uvm_bio.c Tue Mar 21 01:21:59 2017 +0000
+++ b/sys/uvm/uvm_bio.c Tue Mar 21 02:24:35 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_bio.c,v 1.88 2017/03/20 22:57:04 kre Exp $ */
+/*     $NetBSD: uvm_bio.c,v 1.89 2017/03/21 02:24:35 ozaki-r Exp $     */
 
 /*
  * Copyright (c) 1998 Chuck Silvers.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.88 2017/03/20 22:57:04 kre Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.89 2017/03/21 02:24:35 ozaki-r Exp $");
 
 #include "opt_uvmhist.h"
 #include "opt_ubc.h"
@@ -356,7 +356,7 @@
                KASSERTMSG((slot_offset < umap->writeoff + umap->writelen),
                    "out of range write: slot=%#"PRIxVADDR
                        " off=%#"PRIxOFF" len=%#"PRIxVSIZE,
-                   slot_offset, (intmax_t_umap->writeoff, umap->writelen);
+                   slot_offset, (intmax_t)umap->writeoff, umap->writelen);
        }
 
        /* no umap locking needed since we have a ref on the umap */



Home | Main Index | Thread Index | Old Index