Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Jan 2011 22:26:42 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        Juli Mallett <jmallett@FreeBSD.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r217607 - head/sys/mips/rmi
Message-ID:  <20110119222630.F3489@maildrop.int.zabbadoz.net>
In-Reply-To: <201101192145.p0JLjeTk090402@svn.freebsd.org>
References:  <201101192145.p0JLjeTk090402@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 19 Jan 2011, Juli Mallett wrote:

> Author: jmallett
> Date: Wed Jan 19 21:45:40 2011
> New Revision: 217607
> URL: http://svn.freebsd.org/changeset/base/217607
>
> Log:
>  Fix format of physical addresses; this fixes the n32 build.

Thanks!


> Modified:
>  head/sys/mips/rmi/xlr_machdep.c
>
> Modified: head/sys/mips/rmi/xlr_machdep.c
> ==============================================================================
> --- head/sys/mips/rmi/xlr_machdep.c	Wed Jan 19 21:43:08 2011	(r217606)
> +++ head/sys/mips/rmi/xlr_machdep.c	Wed Jan 19 21:45:40 2011	(r217607)
> @@ -358,9 +358,9 @@ xlr_mem_init(void)
> 			}
> 			phys_avail[1] = boot_map->physmem_map[0].addr +
> 			    boot_map->physmem_map[0].size;
> -			printf("First segment: addr:%p -> %p \n",
> -			       (void *)phys_avail[0],
> -			       (void *)phys_avail[1]);
> +			printf("First segment: addr:%#jx -> %#jx \n",
> +			       (uintmax_t)phys_avail[0],
> +			       (uintmax_t)phys_avail[1]);
>
> 			dump_avail[0] = phys_avail[0];
> 			dump_avail[1] = phys_avail[1];
>

-- 
Bjoern A. Zeeb                                 You have to have visions!
         <ks> Going to jail sucks -- <bz> All my daemons like it!
   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/jails.html



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20110119222630.F3489>