CVSROOT: /cvs Module name: src Changes by: kette...@cvs.openbsd.org 2016/10/09 05:37:23
Modified files: sys/dev : audio.c Log message: Don't allocate struct mixer_devinfo instances on the stack. It is a fairly large data structure and if the compiler gets clever and inlines some code we hit the stack size compiler warning. This makes things compile with clang. ok ratchov@