2003-09-15 10:45:43

by Kristian H. Kristensen

[permalink] [raw]
Subject: Typo in scripts/postmod.c

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();
}



2003-09-20 20:49:53

by Sam Ravnborg

[permalink] [raw]
Subject: Re: Typo in scripts/postmod.c

On Mon, Sep 15, 2003 at 12:45:36PM +0200, Kristian H?gsberg wrote:
> Hi Rusty,
>
> There's a small typo in scripts/postmod.c, see patch below.

Good spot.
I have applied this to my local tree, and forwarded to Linus.

Sam