Fix syntax errors.
authorJohn Gilmore <gnu@cygnus>
Wed, 27 Nov 1991 23:32:47 +0000 (23:32 +0000)
committerJohn Gilmore <gnu@cygnus>
Wed, 27 Nov 1991 23:32:47 +0000 (23:32 +0000)
gdb/mipsread.c

index 1002dee5873975db7b992fc7044261d11591a191..193278dd616b7140d58daa56b3a8ee2b03c60eb7 100644 (file)
@@ -173,6 +173,7 @@ static struct blockvector *new_bvect();
 
 static struct type     *parse_type();
 static struct type     *make_type();
+static struct type     *make_struct_type();
 static struct symbol   *mylookup_symbol();
 static struct block    *shrink_block();
 
@@ -1071,10 +1072,10 @@ static struct type *parse_type(ax, sh, bs)
                complain (&basic_type_complaint, t->bt);
                return builtin_type_int;
        }
-       if (map_bt[t->bt])
+       if (map_bt[t->bt]) {
                tp = *map_bt[t->bt];
                fmt = "%s";
-       else {
+       else {
                /* Cannot use builtin types -- build our own */
                switch (t->bt) {
                    case btAdr:
This page took 0.043203 seconds and 4 git commands to generate.