Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Nov 95 16:50:08 GMT
From:      gavin@spider.co.uk (Gavin Shearer)
To:        freebsd-bugs@freebsd.org
Subject:   Problem of '=' instead of '==' in if_ed.c version 1.87
Message-ID:  <9511221650.AA01478@queenbee.spider.co.uk>

next in thread | raw e-mail | index | archive | help
The file "sys/i386/isa/if_ed.c" (version 1.87) has a couple of lines which
have '=' instead of '==':

line 513:
		if (sc->type = ED_TYPE_SMC8216C) {
should be:
		if (sc->type == ED_TYPE_SMC8216C) {

line 537:
                        if (sc->type = ED_TYPE_SMC8216C) {
should be
			if (sc->type == ED_TYPE_SMC8216C) {

	Gavin

-- 
Gavin Shearer <gavin@spider.co.uk>, Spider Software, +44 131 555 5166



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?9511221650.AA01478>