Date: Thu, 7 Jul 2011 14:48:58 +0200 From: Hans Petter Selasky <hselasky@c2i.net> To: freebsd-current@freebsd.org Cc: PseudoCylon <moonlightakkiy@yahoo.ca>, "freebsd-wireless@freebsd.org" <freebsd-wireless@freebsd.org> Subject: Re: [CFT] Sierra Wireless HSPA+ USB modem Message-ID: <201107071448.58436.hselasky@c2i.net> In-Reply-To: <CAFZ_MYKcHPJxA266ECUD1nvsy0NBEgGYaRFxg5jC9Fi4qSpGSw@mail.gmail.com> References: <1309237117.88943.YahooMailNeo@web39307.mail.mud.yahoo.com> <201107061719.38445.hselasky@c2i.net> <CAFZ_MYKcHPJxA266ECUD1nvsy0NBEgGYaRFxg5jC9Fi4qSpGSw@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thursday 07 July 2011 14:43:22 PseudoCylon wrote: > The compiler complained about uninitialized int > if_usie.c: 1484 > - uint8_t pad; > + uint8_t pad = 0; I changed it so that pad is set in both cases: pad = (hip->id & USIE_HIP_PAD) ? 1 : 0; if ((hip->id & USIE_HIP_MASK) == USIE_HIP_CNS2H) { cns = (struct usie_cns *)(((uint8_t *)(hip + 1)) + pad); --HPS
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107071448.58436.hselasky>