summaryrefslogtreecommitdiff
path: root/sql/uniques.cc
diff options
context:
space:
mode:
authorStaale Smedseng <staale.smedseng@sun.com>2009-06-10 16:04:07 +0200
committerStaale Smedseng <staale.smedseng@sun.com>2009-06-10 16:04:07 +0200
commite6e1f4ac845568a1ea18744189ed393dfc9baaf6 (patch)
treeac0c8cc9c36841305e8b1568add202c95b44a9fa /sql/uniques.cc
parentdae006c17fe4962c1f79060a10a1dc80dc07bf03 (diff)
downloadmariadb-git-e6e1f4ac845568a1ea18744189ed393dfc9baaf6.tar.gz
Bug #43414 Parenthesis (and other) warnings compiling MySQL
with gcc 4.3.2 Compiling MySQL with gcc 4.3.2 and later produces a number of warnings, many of which are new with the recent compiler versions. This bug will be resolved in more than one patch to limit the size of changesets. This is the second patch, fixing more of the warnings.
Diffstat (limited to 'sql/uniques.cc')
-rw-r--r--sql/uniques.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/uniques.cc b/sql/uniques.cc
index a0d1beaf0f9..86223151d72 100644
--- a/sql/uniques.cc
+++ b/sql/uniques.cc
@@ -604,9 +604,9 @@ bool Unique::get(TABLE *table)
outfile=table->sort.io_cache=(IO_CACHE*) my_malloc(sizeof(IO_CACHE),
MYF(MY_ZEROFILL));
- if (!outfile || ! my_b_inited(outfile) &&
+ if (!outfile || (! my_b_inited(outfile) &&
open_cached_file(outfile,mysql_tmpdir,TEMP_PREFIX,READ_RECORD_BUFFER,
- MYF(MY_WME)))
+ MYF(MY_WME))))
return 1;
reinit_io_cache(outfile,WRITE_CACHE,0L,0,0);