diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-05-29 23:00:51 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-06-04 12:32:22 +0200 |
commit | 37659ef43be689b2a2f8c507d9395e839bf66066 (patch) | |
tree | d520b7a43778431730704543998f1b1bb83e9708 /mysys/mf_tempfile.c | |
parent | 9988a423d229730b252942b7fa066d1591b7eca9 (diff) | |
download | mariadb-git-37659ef43be689b2a2f8c507d9395e839bf66066.tar.gz |
mysys: remove dead ME_xxx flags
Diffstat (limited to 'mysys/mf_tempfile.c')
-rw-r--r-- | mysys/mf_tempfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/mf_tempfile.c b/mysys/mf_tempfile.c index 0ff7066fd95..e6c19a25789 100644 --- a/mysys/mf_tempfile.c +++ b/mysys/mf_tempfile.c @@ -137,7 +137,7 @@ File create_temp_file(char *to, const char *dir, const char *prefix, { int tmp=my_errno; close(org_file); - (void) my_delete(to, MYF(MY_WME | ME_NOINPUT)); + (void) my_delete(to, MYF(MY_WME)); my_errno=tmp; } } |