Skip to content

Commit

Permalink
fix comp
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmelis committed Mar 1, 2024
1 parent be96e10 commit c836003
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Fixed.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Fixed {
const std::lock_guard<std::mutex> lockGuard(_mutex);
if (_head) {
void* retVal = _head;
_head = *_head;
_head = *reinterpret_cast<unsigned char**>(_head);
return retVal;
}
return nullptr;
Expand Down
2 changes: 1 addition & 1 deletion test/test_FixInt/test_FixInt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ void mallocFull() {
int main() {
UNITY_BEGIN();
RUN_TEST(emptyPool);
RUN_TEST(mallocFull)
RUN_TEST(mallocFull);
return UNITY_END();
}

0 comments on commit c836003

Please sign in to comment.