Fix typo in previous commit

This commit is contained in:
Howard Chu 2001-12-18 02:55:38 +00:00
parent d829c02f0b
commit 3d4c9a7284

View File

@ -37,7 +37,7 @@ int mkstemp( char * template )
#ifdef HAVE_MKTEMP
return open ( mktemp ( template ), O_RDWR|O_CREAT|O_EXCL, 0600 );
#else
return -1
return -1;
#endif
}
#endif