public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] typos in standalone eth_drv
@ 2002-07-11  4:56 Jani Monoses
  0 siblings, 0 replies; only message in thread
From: Jani Monoses @ 2002-07-11  4:56 UTC (permalink / raw)
  To: ecos-discuss

It seems harmless the way it is but aren't those tests meant to be like below?
! has precedence over bitwise operations.


Index: io/eth/current/src/stand_alone/eth_drv.c
===================================================================
RCS file: /cvs/ecos/ecos/packages/io/eth/current/src/stand_alone/eth_drv.c,v
retrieving revision 1.17
diff -u -r1.17 eth_drv.c
--- io/eth/current/src/stand_alone/eth_drv.c    23 May 2002 23:06:04 -0000      1.17
+++ io/eth/current/src/stand_alone/eth_drv.c    11 Jul 2002 11:50:54 -0000
@@ -276,7 +276,7 @@
             sc->funs->eth_drv_old = sc->funs->eth_drv;
             sc->funs->eth_drv = &eth_drv_funs;    // Substitute stand-alone driver
             old_state = sc->state;
-            if (!old_state & ETH_DRV_STATE_ACTIVE) {
+            if (!(old_state & ETH_DRV_STATE_ACTIVE)) {
                 // This interface not fully initialized, do it now
                 (sc->funs->start)(sc, (unsigned char *)&__local_enet_addr, 0);
                 sc->state |= ETH_DRV_STATE_ACTIVE;
@@ -388,7 +388,7 @@
             sc->funs->eth_drv_old = sc->funs->eth_drv;
             sc->funs->eth_drv = &eth_drv_funs;    // Substitute stand-alone driver
             old_state = sc->state;
-            if (!old_state & ETH_DRV_STATE_ACTIVE) {
+            if (!(old_state & ETH_DRV_STATE_ACTIVE)) {
                 // This interface not fully initialized, do it now
                 (sc->funs->start)(sc, (unsigned char *)&__local_enet_addr, 0);
                 sc->state |= ETH_DRV_STATE_ACTIVE;

-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-07-11 11:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-11  4:56 [ECOS] typos in standalone eth_drv Jani Monoses

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).