GNOME Bugzilla – Bug 128934
gok won't compile (C99 assumption)
Last modified: 2004-12-22 21:47:04 UTC
gok-spy.c: In function `gok_spy_append_node': gok-spy.c:1250: parse error before `*' gok-spy.c:1251: `tmp' undeclared (first use in this function) gok-spy.c:1251: (Each undeclared identifier is reported only once gok-spy.c:1251: for each function it appears in.) gok-spy.c:1284: parse error before `*' gok-spy.c:1287: `text' undeclared (first use in this function) gok-spy.c:1290: `gs' undeclared (first use in this function) gok-spy.c:1291: `word' undeclared (first use in this function) gok-spy.c:1295: `len' undeclared (first use in this function) make[5]: *** [gok-spy.o] Error 1 --- gok-spy.c.orig Tue Dec 9 15:00:56 2003 +++ gok-spy.c Tue Dec 9 15:02:02 2003 @@ -1246,8 +1246,9 @@ if ( len != 0 ) { if (len > 18) { + gchar *tmp; gok_log("shortening description"); - gchar *tmp = g_strndup (s, 15); + tmp = g_strndup (s, 15); pName = g_strconcat (tmp, "...", NULL); g_free (tmp); } @@ -1273,7 +1274,6 @@ } */ else if (Accessible_isText (pAccessible)) { - gok_log("still no name, but there is text..."); /* * sadly, many text objects are still nameless - yet we want * to allow the user to get to them. @@ -1281,9 +1281,11 @@ * empty, then we can still "create" a name for it, though we * can't assign it a unique meaningful name. */ - AccessibleText *text = Accessible_getText (pAccessible); + AccessibleText *text; gint j = 0, len; gchar *word, *gs = NULL; + gok_log("still no name, but there is text..."); + text = Accessible_getText (pAccessible); if (text) { long int start, end = 0; do {
This is fixed in CVS HEAD. *** This bug has been marked as a duplicate of 127053 ***