From: Matthias Clasen Date: Tue, 8 Jul 2003 23:59:13 +0000 (+0000) Subject: SGML fix. X-Git-Tag: GLIB_2_3_0~146 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b52034de150aeaf80e6f13cea101caf29e200a0;p=platform%2Fupstream%2Fglib.git SGML fix. --- diff --git a/docs/reference/glib/tmpl/threads.sgml b/docs/reference/glib/tmpl/threads.sgml index bb5eef7..6ec1352 100644 --- a/docs/reference/glib/tmpl/threads.sgml +++ b/docs/reference/glib/tmpl/threads.sgml @@ -1612,7 +1612,9 @@ A GOnce struct controls a one-time initialization funct Any one-time initialization function must have its own unique GOnce struct. - + +@status: +@retval: @Since: 2.4 @@ -1660,7 +1662,7 @@ get_debug_flags () { static GOnce my_once = G_ONCE_INIT; - g_once (&my_once, parse_debug_flags, NULL); + g_once (&my_once, parse_debug_flags, NULL); return my_once.retval; }