From 64967af9ebd0ceb9a1bc53b68f19f6ae8b9ab259 Mon Sep 17 00:00:00 2001
From: foreman
Date: Tue, 10 Jul 2018 19:21:07 -0400
Subject: [PATCH] P4 to Git Change 1578574 by skudchad@skudchad_rocm on
2018/07/10 19:15:59
SWDEV-145570 - [HIP] - g_arguments isnt a double pointer
Affected files ...
... //depot/stg/opencl/drivers/opencl/api/hip/hip_platform.cpp#12 edit
---
hipamd/api/hip/hip_platform.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hipamd/api/hip/hip_platform.cpp b/hipamd/api/hip/hip_platform.cpp
index 4ffcc3da87..3eddb7824d 100644
--- a/hipamd/api/hip/hip_platform.cpp
+++ b/hipamd/api/hip/hip_platform.cpp
@@ -171,7 +171,7 @@ extern "C" hipError_t hipConfigureCall(
return hipSuccess;
}
-char* g_arguments[1024]; // FIXME: needs to grow
+char g_arguments[1024]; // FIXME: needs to grow
extern "C" hipError_t hipSetupArgument(
const void *arg,