From 6b38cb52e4a499ab5559cd8e6bb949c9c226dcc7 Mon Sep 17 00:00:00 2001
From: stepan <stepan.sindelar@oracle.com>
Date: Wed, 20 Sep 2017 11:14:12 +0200
Subject: [PATCH] Fix cc errors on Solaris

---
 .../fficall/src/truffle_common/Rinternals_truffle_common.h    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/com.oracle.truffle.r.native/fficall/src/truffle_common/Rinternals_truffle_common.h b/com.oracle.truffle.r.native/fficall/src/truffle_common/Rinternals_truffle_common.h
index a577016795..8460b04e7b 100644
--- a/com.oracle.truffle.r.native/fficall/src/truffle_common/Rinternals_truffle_common.h
+++ b/com.oracle.truffle.r.native/fficall/src/truffle_common/Rinternals_truffle_common.h
@@ -475,12 +475,12 @@ void R_ProtectWithIndex(SEXP x, PROTECT_INDEX *y) {
 
 void R_Reprotect(SEXP x, PROTECT_INDEX y) {
     TRACE("%p %i", x, y);
-    return ((call_R_Reprotect) callbacks[R_Reprotect_x])(x, y);
+    ((call_R_Reprotect) callbacks[R_Reprotect_x])(x, y);
 }
 
 void Rf_unprotect_ptr(SEXP x) {
     TRACE1(x);
-    return ((call_Rf_unprotect_ptr) callbacks[Rf_unprotect_ptr_x])(x);
+    ((call_Rf_unprotect_ptr) callbacks[Rf_unprotect_ptr_x])(x);
 }
 
 void R_FlushConsole(void) {
-- 
GitLab