diff options
Diffstat (limited to 'lib/tmpfile.c')
-rw-r--r-- | lib/tmpfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tmpfile.c b/lib/tmpfile.c index c048b1832..b91893204 100644 --- a/lib/tmpfile.c +++ b/lib/tmpfile.c @@ -82,7 +82,7 @@ FILE *xtmpfile() #endif /* not HAVE_MKSTEMP */ if (unlink(templ) < 0) error("cannot unlink `%1': %2", templ, strerror(errno)); - delete templ; + a_delete templ; return fp; } |