summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-06-20 11:46:50 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-06-20 11:46:50 +0000
commit3bc5dc61eb7997c904fe06e07f74e776f3ee17eb (patch)
treecf44079191d4fa3b87341ed3827faf412afd405c /op.c
parente858de61083066071eb1526df39bdaa094032c61 (diff)
downloadperl-3bc5dc61eb7997c904fe06e07f74e776f3ee17eb.tar.gz
corrected bad_type() prototype.
p4raw-id: //depot/perl@31
Diffstat (limited to 'op.c')
-rw-r--r--op.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/op.c b/op.c
index 30211544e9..1f673da916 100644
--- a/op.c
+++ b/op.c
@@ -30,7 +30,7 @@
: (*check[type])((OP*)o))
static I32 list_assignment _((OP *o));
-static OP *bad_type _((I32 n, char *t, char *name, OP *kid));
+static void bad_type _((I32 n, char *t, char *name, OP *kid));
static OP *modkids _((OP *o, I32 type));
static OP *no_fh_allowed _((OP *o));
static bool scalar_mod_type _((OP *o, I32 type));
@@ -77,7 +77,7 @@ char* name;
return o;
}
-static OP *
+static void
bad_type(n, t, name, kid)
I32 n;
char *t;