aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-08-23 16:41:55 +0000
committerdam <dam@gudinoff>2022-08-23 16:41:55 +0000
commit338d3e054b0305817e84ac61b8db6fd1d9dee09b (patch)
tree137c2901a05bcaccb622236de536ee97c2ff05f8 /main.c
parentada43f8d16a08fbcac9199591ed10a78675153d9 (diff)
downloadtask-time-tracker-338d3e054b0305817e84ac61b8db6fd1d9dee09b.tar.zst
task-time-tracker-338d3e054b0305817e84ac61b8db6fd1d9dee09b.zip
Updated to do list.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 878e42c..531212f 100644
--- a/main.c
+++ b/main.c
@@ -65,7 +65,7 @@ size_t truncate_string_utf8(uint8_t* string, size_t length) {
string[idx] = '\0';
#if DEBUG
- // TODO Check if there is a null byte before the place where we terminated the string.
+ // Check if there is a null byte before the place where we terminated the string.
size_t idx_dbd = idx - 1;
while(idx_dbd >= 0) {
assert(string[idx_dbd] != '\0' && "Found unexpected null byte. The user is at fault.");