summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-08-06 14:40:36 -0700
committerDan Albert <danalbert@google.com>2014-08-06 14:40:36 -0700
commit3a3dfe7ecba55a3a832b44e4337276c09a6a25e9 (patch)
treef6c8580a28685f8ba755afed330d564eebe2c60c /driver
parentad0544fdf918e64cec05d1c98588880f10b09220 (diff)
downloadrs-3a3dfe7ecba55a3a832b44e4337276c09a6a25e9.tar.gz
Fix the build.
For some reason this call to posinf() was taking a parameter. Change-Id: Ic94d19184b3fec232f407a24c0b895554dbbe8ad
Diffstat (limited to 'driver')
-rw-r--r--driver/runtime/rs_cl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/runtime/rs_cl.c b/driver/runtime/rs_cl.c
index d91d975b..27b27346 100644
--- a/driver/runtime/rs_cl.c
+++ b/driver/runtime/rs_cl.c
@@ -548,7 +548,7 @@ FN_FUNC_FN(rint)
extern float __attribute__((overloadable)) rootn(float v, int r) {
if (r == 0) {
- return posinf(0);
+ return posinf();
}
if (iszero(v)) {