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
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to