Author: hselasky Date: Mon Oct 22 08:59:20 2018 New Revision: 339583 URL: https://svnweb.freebsd.org/changeset/base/339583
Log: The event bytes should be unsigned char. Found by: Peter Holm <[email protected]> MFC after: 3 days Sponsored by: Mellanox Technologies Modified: head/sys/dev/sound/midi/sequencer.c Modified: head/sys/dev/sound/midi/sequencer.c ============================================================================== --- head/sys/dev/sound/midi/sequencer.c Mon Oct 22 08:58:27 2018 (r339582) +++ head/sys/dev/sound/midi/sequencer.c Mon Oct 22 08:59:20 2018 (r339583) @@ -434,7 +434,7 @@ static void seq_eventthread(void *arg) { struct seq_softc *scp = arg; - char event[EV_SZ]; + u_char event[EV_SZ]; mtx_lock(&scp->seq_lock); SEQ_DEBUG(2, printf("seq_eventthread started\n")); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
