commit 4ce8639200a0e9eb727db71c11c5a98cf02040fe parent 514d0e31724a6943dfb22351b2c92cbd88da5391 Author: Andrej Kacian <ticho@claws-mail.org> Date: Mon, 22 Jun 2015 21:18:28 +0200 Removed an unneeded ifdef in my_tmpfile(). Diffstat:
| M | src/common/utils.c | | | 3 | --- |
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/src/common/utils.c b/src/common/utils.c @@ -3035,7 +3035,6 @@ gint change_file_mode_rw(FILE *fp, const gchar *file) FILE *my_tmpfile(void) { -#if HAVE_MKSTEMP || defined(G_OS_WIN32) const gchar suffix[] = ".XXXXXX"; const gchar *tmpdir; guint tmplen; @@ -3085,8 +3084,6 @@ FILE *my_tmpfile(void) return fp; } -#endif /* HAVE_MKSTEMP || G_OS_WIN32 */ - return tmpfile(); }