diff --git a/ChangeLog b/ChangeLog index 91e5fd24f..071855fdd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-01-03 Darin Adler + + * test/test.c: (test_text_caption_get_text_as_int): + Don't use the eel_eat function. + 2002-01-03 Darin Adler * Makefile.am: Turn on test subdirectory. diff --git a/test/test.c b/test/test.c index 63345070c..d2e085f17 100644 --- a/test/test.c +++ b/test/test.c @@ -251,7 +251,9 @@ test_text_caption_get_text_as_int (const EelTextCaption *text_caption) text = eel_text_caption_get_text (text_caption); - eel_eat_str_to_int (text, &result); + eel_str_to_int (text, &result); + + g_free (text); return result; }