diff --git a/deps/ox/Makefile b/deps/ox/Makefile index 3c2b781f..67218516 100644 --- a/deps/ox/Makefile +++ b/deps/ox/Makefile @@ -25,10 +25,6 @@ purge: ${ENV_RUN} rm -rf $(shell find build -mindepth 1 -maxdepth 1 -type d) test: ${ENV_RUN} ${MAKE} -j -C build ARGS="test" HOST_ENV=${HOST_ENV} -run: make - ./build/current/src/wombat/wombat -debug -gdb: make - gdb ./build/current/src/wombat/wombat devenv: docker pull ${DEVENV_IMAGE} diff --git a/deps/ox/src/ox/fs/filestore/nodebuffer.hpp b/deps/ox/src/ox/fs/filestore/nodebuffer.hpp index 81b89fd7..7045da3e 100644 --- a/deps/ox/src/ox/fs/filestore/nodebuffer.hpp +++ b/deps/ox/src/ox/fs/filestore/nodebuffer.hpp @@ -168,9 +168,12 @@ typename NodeBuffer::ItemPtr NodeBuffer::malloc(size return nullptr; } m_header.bytesUsed += out.size(); + } else { + oxTrace("ox::fs::NodeBuffer::malloc::fail") << "Unknown"; } return out; } + oxTrace("ox::fs::NodeBuffer::malloc::fail") << "Insufficient space:" << fullSize << "needed," << available() << "available"; return nullptr; }