From: Dom Lachowicz Date: Mon, 27 Mar 2006 13:37:02 +0000 (+0000) Subject: Change a gboolean to an int. Fixes bug #329789. X-Git-Tag: GLIB_2_11_0~90 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a903995bccf736342990c17fc379c34e142120eb;p=platform%2Fupstream%2Fglib.git Change a gboolean to an int. Fixes bug #329789. 2006-03-27 Dom Lachowicz Change a gboolean to an int. Fixes bug #329789. --- diff --git a/ChangeLog b/ChangeLog index 684add7..bd1d565 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * tests/option-test.c: Copy-and-paste error slipped into test5. Enable test5, as per Matthias' comments in bug 329548#c11. + + Change a gboolean to an int. Fixes bug #329789. 2006-03-27 Matthias Clasen diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 684add7..bd1d565 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -2,6 +2,8 @@ * tests/option-test.c: Copy-and-paste error slipped into test5. Enable test5, as per Matthias' comments in bug 329548#c11. + + Change a gboolean to an int. Fixes bug #329789. 2006-03-27 Matthias Clasen diff --git a/tests/option-test.c b/tests/option-test.c index ffaa925..0837f6b 100644 --- a/tests/option-test.c +++ b/tests/option-test.c @@ -13,7 +13,7 @@ gdouble arg_test4_double; gdouble arg_test5_double; gchar *callback_test1_string; -gboolean callback_test2_int; +int callback_test2_int; gchar *callback_test_optional_string; gboolean callback_test_optional_boolean;