Fix docs for G_MAXSIZE. (#148262, Christophe Fergeau)
authorMatthias Clasen <maclas@gmx.de>
Fri, 23 Jul 2004 14:39:25 +0000 (14:39 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 23 Jul 2004 14:39:25 +0000 (14:39 +0000)
Fri Jul 23 10:38:24 2004  Matthias Clasen  <maclas@gmx.de>

* glib/tmpl/limits.sgml: Fix docs for G_MAXSIZE.  (#148262,
Christophe Fergeau)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
docs/reference/ChangeLog
docs/reference/glib/tmpl/limits.sgml
tests/type-test.c

index ca9c903..fbb9178 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/type-test.c (main): Actually test G_MAXSIZE with
+       a gsize variable.
+
 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #132858, Sven Neumann, patch by James Henstridge:
index ca9c903..fbb9178 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/type-test.c (main): Actually test G_MAXSIZE with
+       a gsize variable.
+
 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #132858, Sven Neumann, patch by James Henstridge:
index ca9c903..fbb9178 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/type-test.c (main): Actually test G_MAXSIZE with
+       a gsize variable.
+
 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #132858, Sven Neumann, patch by James Henstridge:
index ca9c903..fbb9178 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/type-test.c (main): Actually test G_MAXSIZE with
+       a gsize variable.
+
 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #132858, Sven Neumann, patch by James Henstridge:
index ca9c903..fbb9178 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/type-test.c (main): Actually test G_MAXSIZE with
+       a gsize variable.
+
 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
 
        Fix #132858, Sven Neumann, patch by James Henstridge:
index 040b059..157ee39 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jul 23 10:38:24 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/tmpl/limits.sgml: Fix docs for G_MAXSIZE.  (#148262, 
+       Christophe Fergeau)
+
 Sun Jul 18 18:03:08 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * === Released 2.5.0 ===
index 29166f5..44d28a6 100644 (file)
@@ -173,7 +173,7 @@ The maximum value which can be held in a #guint64.
 
 <!-- ##### MACRO G_MAXSIZE ##### -->
 <para>
-The maximum value which can be held in a #gssize.
+The maximum value which can be held in a #gsize.
 </para>
 
 @Since: 2.4
index b808b65..cbaaa7d 100644 (file)
@@ -41,7 +41,7 @@ main (int   argc,
   gushort gus;
   guint gui;
   gulong gul;
-  gssize gsz;
+  gsize gsz;
   gshort gs;
   gint gi;
   glong gl;
@@ -86,6 +86,7 @@ main (int   argc,
 
   gsz = G_MAXSIZE;
   gsz++;
+  
   g_assert (gsz == 0);
 
   gs = G_MAXSHORT;