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
5ec61b30
Commit
5ec61b30
authored
Jun 05, 2009
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #45286: compilation warnings on mysql-5.0-bugteam on MacOSX
Fixed the 5.0-bugteam MacOSX warnings.
parent
f0ae92f4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
5 deletions
+11
-5
client/mysqldump.c
client/mysqldump.c
+2
-2
cmd-line-utils/readline/bind.c
cmd-line-utils/readline/bind.c
+3
-1
cmd-line-utils/readline/display.c
cmd-line-utils/readline/display.c
+1
-1
dbug/user.r
dbug/user.r
+1
-0
strings/ctype.c
strings/ctype.c
+4
-1
No files found.
client/mysqldump.c
View file @
5ec61b30
...
@@ -3122,7 +3122,7 @@ static my_bool dump_all_views_in_db(char *database)
...
@@ -3122,7 +3122,7 @@ static my_bool dump_all_views_in_db(char *database)
for
(
numrows
=
0
;
(
table
=
getTableName
(
1
));
)
for
(
numrows
=
0
;
(
table
=
getTableName
(
1
));
)
{
{
char
*
end
=
strmov
(
afterdot
,
table
);
char
*
end
=
strmov
(
afterdot
,
table
);
if
(
include_table
((
uchar
*
)
hash_key
,
end
-
hash_key
))
if
(
include_table
((
byte
*
)
hash_key
,
end
-
hash_key
))
{
{
numrows
++
;
numrows
++
;
dynstr_append_checked
(
&
query
,
quote_name
(
table
,
table_buff
,
1
));
dynstr_append_checked
(
&
query
,
quote_name
(
table
,
table_buff
,
1
));
...
@@ -3143,7 +3143,7 @@ static my_bool dump_all_views_in_db(char *database)
...
@@ -3143,7 +3143,7 @@ static my_bool dump_all_views_in_db(char *database)
while
((
table
=
getTableName
(
0
)))
while
((
table
=
getTableName
(
0
)))
{
{
char
*
end
=
strmov
(
afterdot
,
table
);
char
*
end
=
strmov
(
afterdot
,
table
);
if
(
include_table
((
uchar
*
)
hash_key
,
end
-
hash_key
))
if
(
include_table
((
byte
*
)
hash_key
,
end
-
hash_key
))
get_view_structure
(
table
,
database
);
get_view_structure
(
table
,
database
);
}
}
if
(
opt_xml
)
if
(
opt_xml
)
...
...
cmd-line-utils/readline/bind.c
View file @
5ec61b30
...
@@ -699,8 +699,10 @@ rl_function_of_keyseq (keyseq, map, type)
...
@@ -699,8 +699,10 @@ rl_function_of_keyseq (keyseq, map, type)
for
(
i
=
0
;
keyseq
&&
keyseq
[
i
];
i
++
)
for
(
i
=
0
;
keyseq
&&
keyseq
[
i
];
i
++
)
{
{
unsigned
char
ic
=
keyseq
[
i
];
unsigned
char
uc
=
keyseq
[
i
];
int
ic
;
ic
=
uc
;
if
(
META_CHAR
(
ic
)
&&
_rl_convert_meta_chars_to_ascii
)
if
(
META_CHAR
(
ic
)
&&
_rl_convert_meta_chars_to_ascii
)
{
{
if
(
map
[
ESC
].
type
==
ISKMAP
)
if
(
map
[
ESC
].
type
==
ISKMAP
)
...
...
cmd-line-utils/readline/display.c
View file @
5ec61b30
...
@@ -1888,7 +1888,7 @@ rl_character_len (c, pos)
...
@@ -1888,7 +1888,7 @@ rl_character_len (c, pos)
uc
=
(
unsigned
char
)
c
;
uc
=
(
unsigned
char
)
c
;
if
(
META_CHAR
(
u
c
))
if
(
META_CHAR
(
c
))
return
((
_rl_output_meta_chars
==
0
)
?
4
:
1
);
return
((
_rl_output_meta_chars
==
0
)
?
4
:
1
);
if
(
uc
==
'\t'
)
if
(
uc
==
'\t'
)
...
...
dbug/user.r
View file @
5ec61b30
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
.\" === Set line length
.\" === Set line length
.\".ll 6.5i
.\".ll 6.5i
.TL
.TL
.warn 0
D B U G
D B U G
.P 0
.P 0
C Program Debugging Package
C Program Debugging Package
...
...
strings/ctype.c
View file @
5ec61b30
...
@@ -327,7 +327,10 @@ my_string_repertoire(CHARSET_INFO *cs, const char *str, ulong length)
...
@@ -327,7 +327,10 @@ my_string_repertoire(CHARSET_INFO *cs, const char *str, ulong length)
{
{
my_wc_t
wc
;
my_wc_t
wc
;
int
chlen
;
int
chlen
;
for
(;
(
chlen
=
cs
->
cset
->
mb_wc
(
cs
,
&
wc
,
str
,
strend
))
>
0
;
str
+=
chlen
)
for
(;
(
chlen
=
cs
->
cset
->
mb_wc
(
cs
,
&
wc
,
(
const
unsigned
char
*
)
str
,
(
const
unsigned
char
*
)
strend
))
>
0
;
str
+=
chlen
)
{
{
if
(
wc
>
0x7F
)
if
(
wc
>
0x7F
)
return
MY_REPERTOIRE_UNICODE30
;
return
MY_REPERTOIRE_UNICODE30
;
...
...
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