[PATCH][2.4.27-rc5] drivers/macintosh/nvram.c typo

From: Mikael Pettersson
Date: Wed Aug 04 2004 - 04:22:07 EST


File offset fixes in -rc5 introduced a typo (missing semi-colon)
in drivers/macintosh/nvram.c, causing compile failure.
Trivial fix below.

/Mikael

--- linux-2.4.27-rc5/drivers/macintosh/nvram.c.~1~ 2004-08-04 10:09:01.000000000 +0200
+++ linux-2.4.27-rc5/drivers/macintosh/nvram.c 2004-08-04 10:44:01.000000000 +0200
@@ -37,7 +37,7 @@
static ssize_t read_nvram(struct file *file, char *buf,
size_t count, loff_t *ppos)
{
- loff_t n = *ppos
+ loff_t n = *ppos;
unsigned int i = n;
char *p = buf;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/