guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.1-135-g134fe


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.1-135-g134fe52
Date: Sun, 19 Jun 2011 22:45:25 +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=134fe52a850a9d53214c9c539fbe496aa8d11176

The branch, stable-2.0 has been updated
       via  134fe52a850a9d53214c9c539fbe496aa8d11176 (commit)
      from  5f09e4ba3c7813cb46273b2c7ad94081e65b8740 (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 134fe52a850a9d53214c9c539fbe496aa8d11176
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jun 20 00:45:18 2011 +0200

    Placate GCC in `test-ffi-lib.c'.
    
    This fixes warnings saying "this decimal constant is unsigned only in
    ISO C90".
    
    * test-suite/standalone/test-ffi-lib.c (test_ffi_u32_, test_ffi_u32_u8,
      test_ffi_u32_s64, test_ffi_s64_s64, test_ffi_u64_u8,
      test_ffi_u64_s64): Mark constants as unsigned.

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

Summary of changes:
 test-suite/standalone/test-ffi-lib.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/test-suite/standalone/test-ffi-lib.c 
b/test-suite/standalone/test-ffi-lib.c
index a89b6aa..37d6e43 100644
--- a/test-suite/standalone/test-ffi-lib.c
+++ b/test-suite/standalone/test-ffi-lib.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2010 Free Software Foundation, Inc.
+/* Copyright (C) 2010, 2011 Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -132,19 +132,19 @@ scm_t_int32 test_ffi_s32_s64 (scm_t_int64 a)
 scm_t_uint32 test_ffi_u32_ (void);
 scm_t_uint32 test_ffi_u32_ (void)
 {
-  return 4000000000;
+  return 4000000000U;
 }
 
 scm_t_uint32 test_ffi_u32_u8 (scm_t_uint8 a);
 scm_t_uint32 test_ffi_u32_u8 (scm_t_uint8 a)
 {
-  return 4000000000 + a;
+  return 4000000000U + a;
 }
 
 scm_t_uint32 test_ffi_u32_s64 (scm_t_int64 a);
 scm_t_uint32 test_ffi_u32_s64 (scm_t_int64 a)
 {
-  return 4000000000 + a;
+  return 4000000000U + a;
 }
 
 /* FIXME: use 64-bit literals */
@@ -169,19 +169,19 @@ scm_t_int64 test_ffi_s64_s64 (scm_t_int64 a)
 scm_t_uint64 test_ffi_u64_ (void);
 scm_t_uint64 test_ffi_u64_ (void)
 {
-  return 4000000000;
+  return 4000000000UL;
 }
 
 scm_t_uint64 test_ffi_u64_u8 (scm_t_uint8 a);
 scm_t_uint64 test_ffi_u64_u8 (scm_t_uint8 a)
 {
-  return 4000000000 + a;
+  return 4000000000UL + a;
 }
 
 scm_t_uint64 test_ffi_u64_s64 (scm_t_int64 a);
 scm_t_uint64 test_ffi_u64_s64 (scm_t_int64 a)
 {
-  return 4000000000 + a;
+  return 4000000000UL + a;
 }
 
 


hooks/post-receive
-- 
GNU Guile



reply via email to

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