From: Kristian Hogsberg There's a small typo in scripts/postmod.c 25-akpm/scripts/modpost.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/modpost.c~modpost-typo-fix scripts/modpost.c --- 25/scripts/modpost.c~modpost-typo-fix Mon Sep 15 11:36:22 2003 +++ 25-akpm/scripts/modpost.c Mon Sep 15 11:36:26 2003 @@ -193,7 +193,7 @@ grab_file(const char *filename, unsigned *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(); } _