Module Name:    src
Committed By:   christos
Date:           Sat May 18 17:41:34 UTC 2019

Modified Files:
        src/sys/arch/i386/include: reg.h

Log Message:
lint gets the wrong size.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/i386/include/reg.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/i386/include/reg.h
diff -u src/sys/arch/i386/include/reg.h:1.21 src/sys/arch/i386/include/reg.h:1.22
--- src/sys/arch/i386/include/reg.h:1.21	Fri May 10 12:27:03 2019
+++ src/sys/arch/i386/include/reg.h	Sat May 18 13:41:34 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: reg.h,v 1.21 2019/05/10 16:27:03 mgorny Exp $	*/
+/*	$NetBSD: reg.h,v 1.22 2019/05/18 17:41:34 christos Exp $	*/
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -95,7 +95,7 @@ struct reg {
 struct fpreg {
 	struct save87 fstate;
 };
-__CTASSERT(sizeof(struct fpreg) == 108);
+__CTASSERT_NOLINT(sizeof(struct fpreg) == 108);
 
 struct xmmregs {
 	struct fxsave fxstate;

Reply via email to