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
72b08b7e
Commit
72b08b7e
authored
Sep 01, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warnings for mysqltest.c
parent
ced32517
Changes
1
Show 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 @
72b08b7e
...
...
@@ -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