From d94eae61b3eb9a8a7e9d409c3358f15ee94eb237 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 17 Oct 2006 06:18:05 +0000 Subject: [PATCH] fix i386 syntax error 2006-10-16 Paolo Bonzini * lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-( git-archimport-id: bonzini@gnu.org--2004b/lightning--stable--1.2--patch-28 --- ChangeLog | 4 ++++ lightning/i386/funcs.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c0da58687..283ab3d2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-10-16 Paolo Bonzini + + * lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-( + 2006-07-06 Paolo Bonzini Ludovic Courtes diff --git a/lightning/i386/funcs.h b/lightning/i386/funcs.h index ee26d4699..4daaf4875 100644 --- a/lightning/i386/funcs.h +++ b/lightning/i386/funcs.h @@ -74,7 +74,7 @@ jit_flush_code(void *dest, void *end) /* See if we can extend the previously mprotect'ed memory area towards higher addresses: the starting address remains the same as before. */ - else if (page >= prev_page && page <= prev_page + prev_length) + if (page >= prev_page && page <= prev_page + prev_length) prev_length = page + length - prev_page; /* See if we can extend the previously mprotect'ed memory area towards