Messages in this thread |  | | From | Keith Owens <> | Subject | Re: [PATCH] 2.4.4-ac11 network drivers cleaning | Date | Sun, 20 May 2001 12:03:42 +1000 |
| |
On Sat, 19 May 2001 17:58:49 -0400, Jeff Garzik <jgarzik@mandrakesoft.com> wrote: >Finally, I don't know if I mentioned this earlier, but to be complete >and optimal, version strings should be a single variable 'version', such >that it can be passed directly to printk like > > printk(version);
Nit pick. That has random side effects if version contains any '%' characters. Make it
printk("%s\n", version);
Not quite as optimal but safer.
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |