sound: Remove SV_ABI_LINUX ifdef #37
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "christos/svabi"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This ifdef does not do anything, SV_ABI_LINUX is a flag.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
@ -1930,3 +1927,3 @@* https://lists.freebsd.org/pipermail/freebsd-emulation/2007-June/003698.html*/if ((nprot & PROT_EXEC) && (dsp_mmap_allow_prot_exec < 0 ||if (nprot & PROT_EXEC && (dsp_mmap_allow_prot_exec < 0 ||I'd keep this parens. I'm surprised this doesn't produce a warning.
e48d8132443a3b054591@ -1930,3 +1927,3 @@* https://lists.freebsd.org/pipermail/freebsd-emulation/2007-June/003698.html*/if ((nprot & PROT_EXEC) && (dsp_mmap_allow_prot_exec < 0 ||if (nprot & PROT_EXEC && (dsp_mmap_allow_prot_exec < 0 ||i would probably keep the parentheses around the bitwise test here for readability, but according to style(9), either is fine.