Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Aug 2020 22:09:40 +0000 (UTC)
From:      Mateusz Guzik <mjg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r363933 - head/sys/riscv/include
Message-ID:  <202008052209.075M9ewm079041@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mjg
Date: Wed Aug  5 22:09:40 2020
New Revision: 363933
URL: https://svnweb.freebsd.org/changeset/base/363933

Log:
  riscv: fix uintfptr_t
  
  Fixes compilation after r363932

Modified:
  head/sys/riscv/include/profile.h

Modified: head/sys/riscv/include/profile.h
==============================================================================
--- head/sys/riscv/include/profile.h	Wed Aug  5 20:42:08 2020	(r363932)
+++ head/sys/riscv/include/profile.h	Wed Aug  5 22:09:40 2020	(r363933)
@@ -70,7 +70,7 @@ void	mcount(uintfptr_t frompc, uintfptr_t selfpc);
 
 #else /* !_KERNEL */
 
-typedef unsigned long long	uintfptr_t;
+typedef	__uintfptr_t	uintfptr_t;
 
 #define	_MCOUNT_DECL	void mcount
 #define	MCOUNT



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