Module Name:    src
Committed By:   skrll
Date:           Fri May 19 06:41:41 UTC 2023

Modified Files:
        src/lib/libc/arch/riscv: SYS.h

Log Message:
No need for double semi-colon

Indent END the same as ENTRY.

NFCI.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/riscv/SYS.h

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

Modified files:

Index: src/lib/libc/arch/riscv/SYS.h
diff -u src/lib/libc/arch/riscv/SYS.h:1.4 src/lib/libc/arch/riscv/SYS.h:1.5
--- src/lib/libc/arch/riscv/SYS.h:1.4	Sun May  7 12:41:47 2023
+++ src/lib/libc/arch/riscv/SYS.h	Fri May 19 06:41:41 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: SYS.h,v 1.4 2023/05/07 12:41:47 skrll Exp $ */
+/*	$NetBSD: SYS.h,v 1.5 2023/05/19 06:41:41 skrll Exp $ */
 
 /*-
  * Copyright (c) 2014,2022 The NetBSD Foundation, Inc.
@@ -71,14 +71,14 @@
  * and syscall name are not the same.
  */
 #define PSEUDO_NOERROR(x,y)						\
-ENTRY(x);								;\
+ENTRY(x)								;\
 	SYSTRAP_NOERROR(y)						;\
 	ret			/* success */				;\
-	END(x)
+END(x)
 
 #define PSEUDO(x,y)							\
-ENTRY(x);								;\
+ENTRY(x)								;\
 	SYSTRAP(y)							;\
 	JUMP_TO_CERROR()	/* error */				;\
 	ret			/* success */				;\
-	END(x)
+END(x)

Reply via email to