Skip to content

Commit c70256c

Browse files
committed
fix typo
1 parent 61db96e commit c70256c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/hexagon/hexagon/hexagon_buffer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ struct DDRAllocation : public Allocation {
5151
DDRAllocation(size_t nbytes, size_t alignment) : Allocation(nbytes, alignment) {
5252
#ifdef _WIN32
5353
data_ = _aligned_malloc(nbytes, alignment);
54-
CHECK(data != nullptr);
54+
CHECK(data_ != nullptr);
5555
#else
5656
int ret = posix_memalign(&data_, alignment, nbytes);
5757
CHECK_EQ(ret, 0);

0 commit comments

Comments
 (0)