From: Matthias Clasen Date: Sun, 3 May 2009 02:36:15 +0000 (-0400) Subject: Fix reference to g_strtoull X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=a4ac1b0552785dfb2d323eb41c6d3875b214989b;p=dana%2Fcg-glib.git Fix reference to g_strtoull As pointed out in bug 580546, that function does not exit. --- diff --git a/docs/reference/glib/tmpl/macros_misc.sgml b/docs/reference/glib/tmpl/macros_misc.sgml index fa3c6ecf..d37b01b0 100644 --- a/docs/reference/glib/tmpl/macros_misc.sgml +++ b/docs/reference/glib/tmpl/macros_misc.sgml @@ -555,8 +555,9 @@ printing values of type #gint64. See also #G_GINT16_FORMAT. Some platforms do not support scanning and printing 64 bit integers, even though the types are supported. On such platforms #G_GINT64_FORMAT is not defined. Note that scanf() may not support 64 bit integers, even -if #G_GINT64_FORMAT is defined. Due to its weak error handling, scanf() is not -recommended for parsing anyway; consider using g_strtoull() instead. +if #G_GINT64_FORMAT is defined. Due to its weak error handling, scanf() +is not recommended for parsing anyway; consider using g_ascii_strtoull() +instead.