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
8e1dac44
Commit
8e1dac44
authored
Oct 18, 2005
by
jani@ua141d10.elisa.omakaista.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some fixes to avoid compiler warnings.
parent
d10326a3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
5 deletions
+6
-5
mysql-test/my_manage.c
mysql-test/my_manage.c
+4
-1
mysql-test/mysql_test_run_new.c
mysql-test/mysql_test_run_new.c
+0
-1
sql/item_func.cc
sql/item_func.cc
+0
-1
strings/ctype-simple.c
strings/ctype-simple.c
+1
-1
strings/ctype-ucs2.c
strings/ctype-ucs2.c
+1
-1
No files found.
mysql-test/my_manage.c
View file @
8e1dac44
...
...
@@ -230,7 +230,10 @@ int wait_for_server_start(char *bin_dir __attribute__((unused)),
char
*
user
,
char
*
password
,
int
port
,
char
*
tmp_dir
)
{
arg_list_t
al
;
int
err
=
0
,
i
;
int
err
=
0
;
#ifndef __WIN__
int
i
;
#endif
char
trash
[
FN_REFLEN
];
/* mysqladmin file */
...
...
mysql-test/mysql_test_run_new.c
View file @
8e1dac44
...
...
@@ -1716,7 +1716,6 @@ int main(int argc, char **argv)
int
*
handle
;
char
test
[
FN_LEN
];
char
mask
[
FN_REFLEN
];
char
*
p
;
int
position
;
/* single test */
...
...
sql/item_func.cc
View file @
8e1dac44
...
...
@@ -3252,7 +3252,6 @@ Item *get_system_var(THD *thd, enum_var_type var_type, LEX_STRING name,
LEX_STRING
component
)
{
sys_var
*
var
;
char
buff
[
MAX_SYS_VAR_LENGTH
*
2
+
4
+
8
],
*
pos
;
LEX_STRING
*
base_name
,
*
component_name
;
if
(
component
.
str
==
0
&&
...
...
strings/ctype-simple.c
View file @
8e1dac44
...
...
@@ -867,7 +867,7 @@ int my_longlong10_to_str_8bit(CHARSET_INFO *cs __attribute__((unused)),
while
(
long_val
!=
0
)
{
long
quo
=
long_val
/
10
;
*--
p
=
'0'
+
(
long_val
-
quo
*
10
);
*--
p
=
(
char
)
(
'0'
+
(
long_val
-
quo
*
10
)
);
long_val
=
quo
;
}
...
...
strings/ctype-ucs2.c
View file @
8e1dac44
...
...
@@ -1043,7 +1043,7 @@ int my_ll10tostr_ucs2(CHARSET_INFO *cs __attribute__((unused)),
while
(
long_val
!=
0
)
{
long
quo
=
long_val
/
10
;
*--
p
=
'0'
+
(
long_val
-
quo
*
10
);
*--
p
=
(
char
)
(
'0'
+
(
long_val
-
quo
*
10
)
);
long_val
=
quo
;
}
...
...
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