diff options
author | tanimura <tanimura@FreeBSD.org> | 2001-11-03 12:47:19 +0000 |
---|---|---|
committer | tanimura <tanimura@FreeBSD.org> | 2001-11-03 12:47:19 +0000 |
commit | abb3f5c7b465fe3b3869034ff107cbfc9b493ee5 (patch) | |
tree | 5de14495eb79986f083872cc9c22cc6e239718b0 /sys/dev/sound/midi/midi.h | |
parent | 43929480b6d64562d03e32747d075dc34ead190d (diff) | |
download | FreeBSD-src-abb3f5c7b465fe3b3869034ff107cbfc9b493ee5.zip FreeBSD-src-abb3f5c7b465fe3b3869034ff107cbfc9b493ee5.tar.gz |
Avoid crash of minor numbers between /dev/midistat and /dev/dspr*.
Diffstat (limited to 'sys/dev/sound/midi/midi.h')
-rw-r--r-- | sys/dev/sound/midi/midi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/midi/midi.h b/sys/dev/sound/midi/midi.h index bcc7f89..ca13d51 100644 --- a/sys/dev/sound/midi/midi.h +++ b/sys/dev/sound/midi/midi.h @@ -308,6 +308,6 @@ int midi_sync(mididev_info *); */ #define MIDI_DEV_MIDIN 2 /* Raw midi access */ -#define MIDI_DEV_STATUS 11 /* /dev/midistat */ +#define MIDI_DEV_STATUS 15 /* /dev/midistat */ #endif /* _MIDI_H_ */ |