From be0d98b4336bccb7bf13ec6249dba8b06dd2bec0 Mon Sep 17 00:00:00 2001 From: Vladislav Sytchenko Date: Thu, 10 Sep 2020 14:59:55 -0400 Subject: [PATCH] Fix typo Change-Id: I571e84cab9258dfd5e94b70865505f452ed89016 --- rocclr/device/pal/paldevice.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocclr/device/pal/paldevice.hpp b/rocclr/device/pal/paldevice.hpp index 27fdef8bc9..127c6de6f9 100755 --- a/rocclr/device/pal/paldevice.hpp +++ b/rocclr/device/pal/paldevice.hpp @@ -259,7 +259,7 @@ class Device : public NullDevice { Resource::MemoryType type_; //!< The buffer's type size_t bufSize_; //!< Staged buffer size std::list freeBuffers_; //!< The list of free buffers - std:atomic acquiredCnt_; //!< The total number of acquired buffers + std::atomic acquiredCnt_; //!< The total number of acquired buffers amd::Monitor lock_; //!< Stgaed buffer acquire/release lock const Device& gpuDevice_; //!< GPU device object };