Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
2f81f083
Commit
2f81f083
authored
Mar 07, 2003
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
os0file.c:
Fix bug in previous push
parent
184c7fee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
innobase/os/os0file.c
innobase/os/os0file.c
+2
-2
No files found.
innobase/os/os0file.c
View file @
2f81f083
...
...
@@ -196,7 +196,7 @@ os_file_get_last_error(void)
err
=
(
ulint
)
GetLastError
();
if
(
err
!=
ERROR_DISK_FULL
)
{
if
(
err
!=
ERROR_DISK_FULL
&&
err
!=
ERROR_FILE_EXISTS
)
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Operating system error number %li in a file operation.
\n
"
...
...
@@ -234,7 +234,7 @@ os_file_get_last_error(void)
#else
err
=
(
ulint
)
errno
;
if
(
err
!=
ENOSPC
)
{
if
(
err
!=
ENOSPC
&&
err
!=
EEXIST
)
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment