After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 128934 - gok won't compile (C99 assumption)
gok won't compile (C99 assumption)
Status: RESOLVED DUPLICATE of bug 127053
Product: gok
Classification: Deprecated
Component: build
unspecified
Other Linux
: Normal major
: ---
Assigned To: David Bolter
David Bolter
Depends on:
Blocks:
 
 
Reported: 2003-12-09 23:03 UTC by Evan Martin
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.5/2.6



Description Evan Martin 2003-12-09 23:03:07 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 {
Comment 1 padraig.obriain 2003-12-10 09:25:01 UTC
This is fixed in CVS HEAD.

*** This bug has been marked as a duplicate of 127053 ***