Messages in this thread Patch in this message |  | | Date | Thu, 05 Sep 2002 22:39:50 +0200 | From | Andreas Steinmetz <> | Subject | 2.4.20pre5 trivial compiler warning fix for fmvj18x_cs.c |
| |
the attached patch fixes a multi line string literal warning for fmvj18x_cs.c. -- Andreas Steinmetz D.O.M. Datenverarbeitung GmbH --- drivers/net/pcmcia/fmvj18x_cs.c.orig 2002-09-05 22:36:18.000000000 +0200 +++ drivers/net/pcmcia/fmvj18x_cs.c 2002-09-05 22:36:30.000000000 +0200 @@ -571,8 +571,8 @@ case XXX10304: /* Read MACID from Buggy CIS */ if (fmvj18x_get_hwinfo(link, tuple.TupleData) == -1) { - printk(KERN_NOTICE "fmvj18x_cs: unable to read hardware net - address."); + printk(KERN_NOTICE "fmvj18x_cs: unable to read hardware net " + "address."); unregister_netdev(dev); goto failed; } |  |