aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-04-06 01:05:12 +0000
committerJeff Law <law@gcc.gnu.org>1998-04-05 19:05:12 -0600
commitdc544d2c5ebf81e9aa94d2890e0c1a286bcc9338 (patch)
treeac34481231b680d05e5468ee4dcc9f7fad37b79d /gcc/objc
parent38c413cd545db0a8e0e65744efa7bdd405f62d39 (diff)
downloadgcc-dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338.zip
gcc-dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338.tar.gz
gcc-dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338.tar.bz2
objc-act.c (encode_aggregate_within): Avoid GNU extensions in prototype and definition.
* objc/objc-act.c (encode_aggregate_within): Avoid GNU extensions in prototype and definition. From-SVN: r19016
Diffstat (limited to 'gcc/objc')
-rw-r--r--gcc/objc/objc-act.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c
index 1f755c8..0f68bd8 100644
--- a/gcc/objc/objc-act.c
+++ b/gcc/objc/objc-act.c
@@ -196,7 +196,7 @@ static void generate_static_references PROTO((void));
static int check_methods_accessible PROTO((tree, tree,
int));
static void encode_aggregate_within PROTO((tree, int, int,
- char, char));
+ int, int));
/* We handle printing method names ourselves for ObjC */
extern char *(*decl_printable_name) ();
@@ -6552,8 +6552,8 @@ encode_aggregate_within (type, curtype, format, left, right)
tree type;
int curtype;
int format;
- char left;
- char right;
+ int left;
+ int right;
{
if (obstack_object_size (&util_obstack) > 0
&& *(obstack_next_free (&util_obstack) - 1) == '^')