Module Name: src
Committed By: martin
Date: Sat Apr 18 10:30:49 UTC 2020
Modified Files:
src/sys/arch/alpha/include: asm.h
Log Message:
Fix copy & pasto in previous (to fix the build)
To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/alpha/include/asm.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/alpha/include/asm.h
diff -u src/sys/arch/alpha/include/asm.h:1.37 src/sys/arch/alpha/include/asm.h:1.38
--- src/sys/arch/alpha/include/asm.h:1.37 Fri Apr 17 14:19:43 2020
+++ src/sys/arch/alpha/include/asm.h Sat Apr 18 10:30:49 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: asm.h,v 1.37 2020/04/17 14:19:43 joerg Exp $ */
+/* $NetBSD: asm.h,v 1.38 2020/04/18 10:30:49 martin Exp $ */
/*
* Copyright (c) 1991,1990,1989,1994,1995,1996 Carnegie Mellon University
@@ -644,7 +644,7 @@ label: ASCIZ msg; \
*/
#define __SECTIONSTRING(_sec, _str) \
.pushsection _sec,"MS",@progbits,1; \
- .asciz x; \
+ .asciz _str; \
.popsection
#ifdef _KERNEL