diff options
Diffstat (limited to 'mysys/my_winfile.c')
-rw-r--r-- | mysys/my_winfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_winfile.c b/mysys/my_winfile.c index ad87bf718d2..0762a95e827 100644 --- a/mysys/my_winfile.c +++ b/mysys/my_winfile.c @@ -528,7 +528,7 @@ FILE *my_win_fopen(const char *filename, const char *type) { FILE *file; int flags= 0; - DBUG_ENTER("my_win_open"); + DBUG_ENTER("my_win_fopen"); /* If we are not creating, then we need to use my_access to make sure @@ -585,7 +585,7 @@ int my_win_fclose(FILE *file) { File fd; - DBUG_ENTER("my_win_close"); + DBUG_ENTER("my_win_fclose"); fd= my_fileno(file); if(fd < 0) DBUG_RETURN(-1); |