1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

* filesys.c: Possibly uninitialized variable rv.

This commit is contained in:
Jim Blandy 1996-09-11 20:26:10 +00:00
parent c01e049b10
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))