[patch] 2.3.6-pre1: binfmt_aout.c missing semi-colon

Tim Waugh (tim@cyberelk.demon.co.uk)
Tue, 8 Jun 1999 22:47:34 +0100 (GMT)


Here's a patch for 2.3.6-pre1.

Tim.
*/

--- linux/fs/binfmt_aout.c~ Tue Jun 8 22:39:32 1999
+++ linux/fs/binfmt_aout.c Tue Jun 8 22:40:14 1999
@@ -383,7 +383,7 @@
if (N_MAGIC(ex) == OMAGIC) {
#if defined(__alpha__) || defined(__sparc__)
do_brk(N_TXTADDR(ex) & PAGE_MASK,
- ex.a_text+ex.a_data + PAGE_SIZE - 1)
+ ex.a_text+ex.a_data + PAGE_SIZE - 1);
read_exec(bprm->dentry, fd_offset, (char *) N_TXTADDR(ex),
ex.a_text+ex.a_data, 0);
#else

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