From c0babe6b0a6a771b3a656cd9dbe95f8fc7dd9ff0 Mon Sep 17 00:00:00 2001 From: Aditya Atluri Date: Thu, 22 Sep 2016 09:30:05 -0500 Subject: [PATCH] Fixed typo in function return Change-Id: I8905bfdbc162815ac10c926e77a9bab432932c9c --- hipamd/src/hip_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hipamd/src/hip_context.cpp b/hipamd/src/hip_context.cpp index fa19f3a8a3..d0ee129358 100644 --- a/hipamd/src/hip_context.cpp +++ b/hipamd/src/hip_context.cpp @@ -76,7 +76,7 @@ hipError_t hipDeviceGet(hipDevice_t *device, int deviceId) return ihipLogStatus(e); }; -pError_t hipDriverGetVersion(int *driverVersion) +hipError_t hipDriverGetVersion(int *driverVersion) { HIP_INIT_API(driverVersion); hipError_t e = hipSuccess;