Module Name:    src
Committed By:   joerg
Date:           Tue Jul 17 11:55:55 UTC 2018

Modified Files:
        src/sys/arch/aarch64/include: types.h

Log Message:
Be consistent and explicitly size register32_t too.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/aarch64/include/types.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/aarch64/include/types.h
diff -u src/sys/arch/aarch64/include/types.h:1.10 src/sys/arch/aarch64/include/types.h:1.11
--- src/sys/arch/aarch64/include/types.h:1.10	Tue Jul 17 00:34:11 2018
+++ src/sys/arch/aarch64/include/types.h	Tue Jul 17 11:55:55 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: types.h,v 1.10 2018/07/17 00:34:11 christos Exp $ */
+/* $NetBSD: types.h,v 1.11 2018/07/17 11:55:55 joerg Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -55,9 +55,9 @@ typedef unsigned long	vsize_t;
 #define PRIuVSIZE	"lu"
 
 typedef __uint64_t register_t;
-typedef unsigned int register32_t;
+typedef __uint32_t register32_t;
 #define PRIxREGISTER	PRIx64
-#define PRIxREGISTER32	"x"
+#define PRIxREGISTER32	PRIx32
 
 typedef unsigned short	tlb_asid_t;
 

Reply via email to