X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=lib%2Fmsvcrt%2Fstdio%2Ftmpfile.c;h=2854ea203a601d594374d4aa9d56ff235430bbbd;hb=e3ed2d773259cc445c7ff8181ebd934931365328;hp=1e1c116e1ed5e56d4f16ab642acfddd28b983ed7;hpb=d378c68f5a9bb25c9e671dacd482d2e25d211df3;p=reactos.git diff --git a/lib/msvcrt/stdio/tmpfile.c b/lib/msvcrt/stdio/tmpfile.c index 1e1c116..2854ea2 100644 --- a/lib/msvcrt/stdio/tmpfile.c +++ b/lib/msvcrt/stdio/tmpfile.c @@ -14,7 +14,7 @@ #include -FILE * __alloc_file(void); +FILE * __alloc_file(void); FILE * tmpfile(void) @@ -38,7 +38,7 @@ tmpfile(void) // errno = 0; temp_fd = _open(temp_name, 0, SH_DENYRW); // if ( errno == ENOENT ) -// break; +// break; } while (temp_fd == -1 && (temp_name = tmpnam(0)) != 0); if (temp_name == 0)