Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

my_winfile_f{open|close}: correct DBUG_ENTER to reflect function name #243

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions mysys/my_winfile.cc
Expand Up @@ -472,7 +472,7 @@ File my_win_fileno(FILE *file) {
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
Expand Down Expand Up @@ -520,7 +520,7 @@ FILE *my_win_fdopen(File fd, const char *type) {
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);
if (fclose(file) < 0) DBUG_RETURN(-1);
Expand Down