set but not used warning in util/recover.c

../util/recover.c:416:9: warning: variable 'bsize' set but not used [-Wunused-but-set-variable]
  416 |     int bsize;
      |         ^~~~~
This commit is contained in:
nhmall
2021-02-04 07:40:55 -05:00
parent 304d74515a
commit 0e051018e7

View File

@@ -417,6 +417,7 @@ exepath(char *str)
if (!str)
return (char *) 0;
nhUse(bsize);
bsize = EXEPATHBUFSZ;
tmp = exepathbuf;
#if !defined(WIN32)