main.c, collapse #ifdef
This commit is contained in:
parent
3d8d41108f
commit
fbc83e52b0
|
|
@ -1151,10 +1151,8 @@ bot:
|
||||||
#if defined(HAS_WINDOWS) || defined(_MSC_VER) || defined(__MINGW32__)
|
#if defined(HAS_WINDOWS) || defined(_MSC_VER) || defined(__MINGW32__)
|
||||||
char *tpf = NULL; /* temporary file */
|
char *tpf = NULL; /* temporary file */
|
||||||
char *dname = NULL; /* input file*/
|
char *dname = NULL; /* input file*/
|
||||||
#endif
|
|
||||||
/* tmpfile() returns NULL, if in MS Windows as non admin user
|
/* tmpfile() returns NULL, if in MS Windows as non admin user
|
||||||
then we add a tempfile in the local directory */
|
then we add a tempfile in the local directory */
|
||||||
#if defined(HAS_WINDOWS) || defined(_MSC_VER) || defined(__MINGW32__)
|
|
||||||
if (tempfile == NULL) {
|
if (tempfile == NULL) {
|
||||||
tpf = smktemp("sp");
|
tpf = smktemp("sp");
|
||||||
tempfile = fopen(tpf, "w+b");
|
tempfile = fopen(tpf, "w+b");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue