Module Name: src Committed By: rin Date: Thu Aug 3 08:36:38 UTC 2023
Modified Files: src/tests/dev/audio: audiotest.c Log Message: audiotest: Appease GCC 12.3.0 -Wmisleading-indentation It does not matter whether this statement is a part of this if-then block or not, anyway. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/tests/dev/audio/audiotest.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/dev/audio/audiotest.c diff -u src/tests/dev/audio/audiotest.c:1.30 src/tests/dev/audio/audiotest.c:1.31 --- src/tests/dev/audio/audiotest.c:1.30 Sat Jun 24 05:27:13 2023 +++ src/tests/dev/audio/audiotest.c Thu Aug 3 08:36:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: audiotest.c,v 1.30 2023/06/24 05:27:13 msaitoh Exp $ */ +/* $NetBSD: audiotest.c,v 1.31 2023/08/03 08:36:38 rin Exp $ */ /* * Copyright (C) 2019 Tetsuya Isaki. All rights reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: audiotest.c,v 1.30 2023/06/24 05:27:13 msaitoh Exp $"); +__RCSID("$NetBSD: audiotest.c,v 1.31 2023/08/03 08:36:38 rin Exp $"); #include <errno.h> #include <fcntl.h> @@ -1065,7 +1065,7 @@ void *debug_mmap(int line, void *ptr, si #define ADDFLAG(buf, var, name) do { \ if (((var) & (name))) \ n = strlcat(buf, "|" #name, sizeof(buf)); \ - var &= ~(name); \ + (var) &= ~(name); \ } while (0) n = 0;