Skip to content

Commit

Permalink
Fixed compilation failure due to unused var.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Vojtovich committed Apr 23, 2016
1 parent 618e300 commit 0ea4c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/mysql.cc
Expand Up @@ -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)
{
Expand Down

0 comments on commit 0ea4c73

Please sign in to comment.