diff options
author | Spider Boardman <spider@Orb.Nashua.NH.US> | 1997-04-30 00:48:13 -0400 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-30 00:00:00 +1200 |
commit | c64afb197ce53aa2c5bfc4b930690d09c87d4014 (patch) | |
tree | 2c9d0005ab2baf08fd737cdac6e726895e90125a /perlio.c | |
parent | b3f57a3ae313cf6361c2b502f733d1937d10590c (diff) | |
download | perl-c64afb197ce53aa2c5bfc4b930690d09c87d4014.tar.gz |
Fix warning wrt return value of PerlIO_getname()
Problem with -Duseperlio:
cc: Warning: perlio.c, line 302: Non-void function "PerlIO_getname" does not contain a return statement.
char *
^
p5p-msgid: 199704300448.AAA24174@Orb.Nashua.NH.US
Diffstat (limited to 'perlio.c')
-rw-r--r-- | perlio.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -308,6 +308,7 @@ char *buf; return fgetname(f,buf); #else croak("Don't know how to get file name"); + return NULL; #endif } |