Remove compiler warning

This commit is contained in:
Anthony Green
2014-06-12 06:30:59 -04:00
parent ad0d1d239a
commit 1cee07be47

View File

@@ -286,8 +286,11 @@ static int
open_temp_exec_file_dir (const char *dir) open_temp_exec_file_dir (const char *dir)
{ {
static const char suffix[] = "/ffiXXXXXX"; static const char suffix[] = "/ffiXXXXXX";
int lendir, flags, fd; int lendir, flags;
char *tempname; char *tempname;
#ifdef O_TMPFILE
int fd;
#endif
#ifdef O_CLOEXEC #ifdef O_CLOEXEC
flags = O_CLOEXEC; flags = O_CLOEXEC;