[seed] [mpfr] Minor type consistency change (size_t -> gsize)



commit e501b043ee8a9133f577e21f46a40a597fec0109
Author: Matt ARSENAULT <arsenm2 rpi edu>
Date:   Sat Jul 4 01:45:27 2009 -0400

    [mpfr] Minor type consistency change (size_t -> gsize)

 modules/mpfr/mpfr.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/modules/mpfr/mpfr.c b/modules/mpfr/mpfr.c
index 38fde48..7953d57 100644
--- a/modules/mpfr/mpfr.c
+++ b/modules/mpfr/mpfr.c
@@ -73,7 +73,7 @@ seed_mpfr_out_str (SeedContext ctx,
                    const SeedValue args[],
                    SeedException * except)
 {
-    size_t n;
+    gsize n;
     FILE* stream;
     gint base;
     mpfr_rnd_t rnd;
@@ -281,7 +281,7 @@ seed_mpfr_set (SeedContext ctx,
 SeedObject
 seed_mpfr_construct_with_set(SeedContext ctx,
                              SeedObject constructor,
-                             size_t arg_count,
+                             gsize arg_count,
                              const SeedValue args[],
                              SeedException* except)
 {
@@ -355,7 +355,7 @@ seed_mpfr_construct_with_set(SeedContext ctx,
 SeedObject
 seed_mpfr_construct(SeedContext ctx,
                     SeedObject constructor,
-                    size_t arg_count,
+                    gsize arg_count,
                     const SeedValue args[],
                     SeedException* except)
 {



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