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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6a6d5ef7
Commit
6a6d5ef7
authored
May 03, 2004
by
guilhem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trying to remove Windows compiler warnings (Miguel, could you please check if it's better now?)
parent
d8ad1eb1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
innobase/eval/eval0eval.c
innobase/eval/eval0eval.c
+1
-1
sql/ha_innodb.cc
sql/ha_innodb.cc
+0
-1
No files found.
innobase/eval/eval0eval.c
View file @
6a6d5ef7
...
@@ -725,7 +725,7 @@ eval_predefined(
...
@@ -725,7 +725,7 @@ eval_predefined(
uint_val
=
(
ulint
)
int_val
;
uint_val
=
(
ulint
)
int_val
;
}
}
for
(
tmp
=
int_len
;
uint_val
>
0
;
uint_val
/=
10
)
{
for
(
tmp
=
int_len
;
uint_val
>
0
;
uint_val
/=
10
)
{
data
[
--
tmp
]
=
'0'
+
(
uint_val
%
10
);
data
[
--
tmp
]
=
'0'
+
(
byte
)(
uint_val
%
10
);
}
}
}
}
...
...
sql/ha_innodb.cc
View file @
6a6d5ef7
...
@@ -4780,7 +4780,6 @@ innodb_show_status(
...
@@ -4780,7 +4780,6 @@ innodb_show_status(
/*===============*/
/*===============*/
THD
*
thd
)
/* in: the MySQL query thread of the caller */
THD
*
thd
)
/* in: the MySQL query thread of the caller */
{
{
char
*
buf
;
Protocol
*
protocol
=
thd
->
protocol
;
Protocol
*
protocol
=
thd
->
protocol
;
trx_t
*
trx
;
trx_t
*
trx
;
...
...
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