git: 32a18e9abd38 - main - freebsd32: Eliminate spaces at end of line.

Dmitry Chagin dchagin at FreeBSD.org
Thu Jul 29 09:46:03 UTC 2021


The branch main has been updated by dchagin:

URL: https://cgit.FreeBSD.org/src/commit/?id=32a18e9abd3809cf265e0e2969cd942fa84ae32b

commit 32a18e9abd3809cf265e0e2969cd942fa84ae32b
Author:     Dmitry Chagin <dchagin at FreeBSD.org>
AuthorDate: 2021-07-29 09:39:30 +0000
Commit:     Dmitry Chagin <dchagin at FreeBSD.org>
CommitDate: 2021-07-29 09:39:30 +0000

    freebsd32: Eliminate spaces at end of line.
    
    Reviewed by:            kib
    Differential Revision:  https://reviews.freebsd.org/D31245
    MFC after:              2 weeks
---
 sys/compat/freebsd32/freebsd32_misc.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys/compat/freebsd32/freebsd32_misc.h b/sys/compat/freebsd32/freebsd32_misc.h
index 7db8fe6b84e0..9e0f55ae8478 100644
--- a/sys/compat/freebsd32/freebsd32_misc.h
+++ b/sys/compat/freebsd32/freebsd32_misc.h
@@ -38,12 +38,12 @@
 
 #if BYTE_ORDER == BIG_ENDIAN
 #define	PAIR32TO64(type, name)	((name ## 2) | ((type)(name ## 1) << 32))
-#define	RETVAL_HI	0	
-#define	RETVAL_LO	1	
+#define	RETVAL_HI	0
+#define	RETVAL_LO	1
 #else
 #define	PAIR32TO64(type, name)	((name ## 1) | ((type)(name ## 2) << 32))
-#define	RETVAL_HI	1	
-#define	RETVAL_LO	0	
+#define	RETVAL_HI	1
+#define	RETVAL_LO	0
 #endif
 
 #endif	/* !_COMPAT_FREEBSD32_MISC_H_ */


More information about the dev-commits-src-all mailing list