Typo: if (mpu_config = NULL) -> if (mpu_config != NULL)

PR:		11411
Submitted by:	Christopher Peterson <cpeterso@cs.washington.edu>
This commit is contained in:
Peter Wemm 1999-05-02 21:43:20 +00:00
parent 025fd878ff
commit ccb64c7419
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=46340

View File

@ -214,7 +214,7 @@ initialize_ProSonic16(snddev_info *d)
int mpu_base, mpu_irq;
if ((mpu_config = NULL)) {
if (mpu_config != NULL) {
mpu_base = mpu_config->io_base;
mpu_irq = mpu_config->irq;
} else {