guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, master, updated. release_1-9-0-52-ga82


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-0-52-ga823e72
Date: Tue, 14 Jul 2009 23:17:37 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=a823e7272e7e2800491704a342c6853bc5d95d4e

The branch, master has been updated
       via  a823e7272e7e2800491704a342c6853bc5d95d4e (commit)
      from  07f99e1c6a74017f41bdc1355cf8645392f433c6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a823e7272e7e2800491704a342c6853bc5d95d4e
Author: Ludovic Courtès <address@hidden>
Date:   Wed Jul 15 01:17:32 2009 +0200

    Fix typo in the compile-type verification of `OBJCODE_COOKIE'.
    
    * libguile/objcodes.c: Fix `sizeof (OBJCODE_COOKIE)' assertion: the
      trailing 0 must not be taken into account, and multiple of 8 means the
      3 LSBs are clear.

-----------------------------------------------------------------------

Summary of changes:
 libguile/objcodes.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libguile/objcodes.c b/libguile/objcodes.c
index c758e93..038c4c7 100644
--- a/libguile/objcodes.c
+++ b/libguile/objcodes.c
@@ -53,7 +53,7 @@
   "GOOF-0.6-" OBJCODE_ENDIANNESS "-" OBJCODE_WORD_SIZE "---"
 
 /* The length of the header must be a multiple of 8 bytes.  */
-verify ((sizeof (OBJCODE_COOKIE) & 7) != 0);
+verify (((sizeof (OBJCODE_COOKIE) - 1) & 7) == 0);
 
 
 


hooks/post-receive
-- 
GNU Guile




reply via email to

[Prev in Thread] Current Thread [Next in Thread]