From 3bea5bd848219276d1b922858cb57898e43c17cf Mon Sep 17 00:00:00 2001 From: Daniel Ledda Date: Wed, 15 Jan 2025 13:41:16 +0100 Subject: [PATCH] fix --- app.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/app.cpp b/app.cpp index aa362c5..eda1c53 100644 --- a/app.cpp +++ b/app.cpp @@ -411,7 +411,6 @@ int gymTrackerAddExercise(Arena *arena, list args) { byte *newExerciseNameDb = buf + newEntryStartIndex + sizeof(GymLogDbEntry); memcpy(newExerciseNameDb, newExerciseName.str, newExerciseName.length); size_t bufSize = newEntryStartIndex + sizeof(GymLogDbEntry) + newExerciseName.length; - log("%i\n", bufSize); os_writeEntireFile(arena, DB_FILE_LOCATION, buf, bufSize); } }