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
43e19b3f
Commit
43e19b3f
authored
8 years ago
by
Sergey Vojtovich
Committed by
Nirbhay Choubey
8 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compilation failure due to unused var.
parent
4f1c1975
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
client/mysql.cc
client/mysql.cc
+2
-2
No files found.
client/mysql.cc
View file @
43e19b3f
...
...
@@ -4898,11 +4898,11 @@ put_info(const char *str,INFO_TYPE info_type, uint error, const char *sqlstate)
{
if
(
!
inited
)
{
int
errret
;
inited
=
1
;
#ifdef HAVE_SETUPTERM
int
errret
;
have_curses
=
setupterm
((
char
*
)
0
,
1
,
&
errret
)
!=
ERR
;
#endif
inited
=
1
;
}
if
(
info_type
==
INFO_ERROR
)
{
...
...
This diff is collapsed.
Click to expand it.
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