The branch main has been updated by christos: URL: https://cgit.FreeBSD.org/src/commit/?id=d159b023de52570800d5a5292318de4bce3c9978
commit d159b023de52570800d5a5292318de4bce3c9978 Author: Christos Margiolis <[email protected]> AuthorDate: 2025-11-11 12:05:12 +0000 Commit: Christos Margiolis <[email protected]> CommitDate: 2025-11-11 12:05:12 +0000 sound: Define SNDBUF_F_MANAGED as 0x00000001 It's the only flag anyway. No functional change intended. Sponsored by: The FreeBSD Foundation MFC after: 1 week Reviewed by: markj, emaste Differential Revision: https://reviews.freebsd.org/D53521 --- sys/dev/sound/pcm/buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sound/pcm/buffer.h b/sys/dev/sound/pcm/buffer.h index 329a41d0b0a5..1e1cfd570b36 100644 --- a/sys/dev/sound/pcm/buffer.h +++ b/sys/dev/sound/pcm/buffer.h @@ -26,7 +26,7 @@ * SUCH DAMAGE. */ -#define SNDBUF_F_MANAGED 0x00000008 +#define SNDBUF_F_MANAGED 0x00000001 #define SNDBUF_NAMELEN 48
