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
126e351c
Commit
126e351c
authored
Sep 01, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warnings for mysqltest.c
client/mysqltest.c: Fix warnings Remove unused vars
parent
772843ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
client/mysqltest.c
client/mysqltest.c
+2
-4
No files found.
client/mysqltest.c
View file @
126e351c
...
...
@@ -1233,7 +1233,7 @@ enum enum_operator
int
do_modify_var
(
struct
st_query
*
query
,
const
char
*
name
,
enum
enum_operator
operator
)
{
char
*
p
=
query
->
first_argument
;
c
onst
c
har
*
p
=
query
->
first_argument
;
VAR
*
v
;
if
(
!*
p
)
die
(
"Missing arguments to %s"
,
name
);
...
...
@@ -1252,7 +1252,7 @@ int do_modify_var(struct st_query *query, const char *name,
break
;
}
v
->
int_dirty
=
1
;
query
->
last_argument
=
++
p
;
query
->
last_argument
=
(
char
*
)
++
p
;
return
0
;
}
...
...
@@ -1392,8 +1392,6 @@ int do_sync_with_master(struct st_query *query)
long
offset
=
0
;
char
*
p
=
query
->
first_argument
;
const
char
*
offset_start
=
p
;
const
char
*
offset_end
=
query
->
end
;
int
error
;
if
(
*
offset_start
)
{
for
(;
my_isdigit
(
charset_info
,
*
p
);
p
++
)
...
...
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