summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2016-07-07 21:41:23 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-07-07 21:41:24 +0000
commit5f58ad9b943c9c72bbe047de5906ea798c1134a6 (patch)
tree27cb740b2ee796284778a09c80cf2f17f6d7c4b0
parent1f0f8e1b401a3d06b89ce753ff1410dc5ba964c2 (diff)
parentb156e69c07ac3c9450f830450b49afdd14c18df9 (diff)
downloadml-nougat-mr1-wear-release.tar.gz
-rw-r--r--bordeaux/learning/stochastic_linear_ranker/native/common_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bordeaux/learning/stochastic_linear_ranker/native/common_defs.h b/bordeaux/learning/stochastic_linear_ranker/native/common_defs.h
index 597c4f195..4df8686c5 100644
--- a/bordeaux/learning/stochastic_linear_ranker/native/common_defs.h
+++ b/bordeaux/learning/stochastic_linear_ranker/native/common_defs.h
@@ -39,7 +39,7 @@ enum MulticlassUpdateType { MAX, RANK };
#define uint64 uint64_t
#define int64 int64_t
#include <cutils/log.h>
-#define CHECK_GT(x,y) if (x<y) ALOGE("CHECK_GT failed at file %s line %d", \
+#define CHECK_GT(x,y) if ((x)<(y)) ALOGE("CHECK_GT failed at file %s line %d", \
__FILE__, __LINE__);
#endif