From 407273d0dcd86cb3f2030ca9b470cfa78958f23d Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 6 Aug 2024 21:38:12 -0400 Subject: [PATCH] how did i not catch this before? --- CMakeLists.txt | 2 +- include/blt/gp/stack.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a0aeff0..2d5f42c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(blt-gp VERSION 0.0.124) +project(blt-gp VERSION 0.0.125) include(CTest) diff --git a/include/blt/gp/stack.h b/include/blt/gp/stack.h index cb3bcf2..b123066 100644 --- a/include/blt/gp/stack.h +++ b/include/blt/gp/stack.h @@ -254,7 +254,7 @@ namespace blt::gp if (bytes_available < 0) { remaining_bytes -= blk->used_bytes_in_block(); - blk = head->metadata.prev; + blk = blk->metadata.prev; } else break; }