* filesys.c: Possibly uninitialized variable rv.

This commit is contained in:
Jim Blandy 1996-09-11 20:26:10 +00:00
commit 657c49b3f3

View file

@ -589,7 +589,7 @@ scm_sys_stat (fd_or_path)
SCM fd_or_path;
#endif
{
int rv;
int rv = 1;
struct stat stat_temp;
if (SCM_INUMP (fd_or_path))