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
024be23a
Commit
024be23a
authored
Mar 28, 2007
by
tsmith@siva.hindu.god
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warning on Windows
parent
d4e0de8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/log.cc
sql/log.cc
+2
-2
No files found.
sql/log.cc
View file @
024be23a
...
...
@@ -2296,7 +2296,7 @@ void MYSQL_LOG::signal_update()
#ifdef __NT__
static
void
print_buffer_to_nt_eventlog
(
enum
loglevel
level
,
char
*
buff
,
uint
length
,
in
t
buffLen
)
size_t
length
,
size_
t
buffLen
)
{
HANDLE
event
;
char
*
buffptr
=
buff
;
...
...
@@ -2390,7 +2390,7 @@ static void print_buffer_to_file(enum loglevel level, const char *buffer)
void
vprint_msg_to_log
(
enum
loglevel
level
,
const
char
*
format
,
va_list
args
)
{
char
buff
[
1024
];
uin
t
length
;
size_
t
length
;
DBUG_ENTER
(
"vprint_msg_to_log"
);
length
=
my_vsnprintf
(
buff
,
sizeof
(
buff
),
format
,
args
);
...
...
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