Typo in scripts/postmod.c

From: Kristian Høgsberg
Date: Mon Sep 15 2003 - 05:46:46 EST


Hi Rusty,

There's a small typo in scripts/postmod.c, see patch below.

regards, Kristian

--- orig/linux-2.6.0-test5/scripts/modpost.c 2003-09-08
21:49:55.000000000 +0200
+++ linux-2.6.0-test5/scripts/modpost.c 2003-09-15 12:00:05.000000000 +0200
@@ -193,7 +193,7 @@


*size = st.st_size;
map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
- if (mmap == MAP_FAILED) {
+ if (map == MAP_FAILED) {
perror(filename);
abort();
}


-
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/