diff options
| author | Christos Margiolis <christos@FreeBSD.org> | 2025-11-11 12:05:12 +0000 |
|---|---|---|
| committer | Christos Margiolis <christos@FreeBSD.org> | 2025-11-11 12:05:12 +0000 |
| commit | d159b023de52570800d5a5292318de4bce3c9978 (patch) | |
| tree | 5f088aa188505d5ea422852a4e3f2c49c98091aa | |
| parent | 482d0d97885506a5eb2b1f2501f65e7e4fca6fdc (diff) | |
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
| -rw-r--r-- | sys/dev/sound/pcm/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
