diff options
author | David Robillard <d@drobilla.net> | 2025-06-07 11:57:12 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-06-07 11:57:12 -0400 |
commit | 028b861412cee8787b5dfc2051c50a0d1c85dbcb (patch) | |
tree | 2f330b6b68878ec386b73a2629160e3b35b20e52 | |
parent | 2ab70b6f3bca05bb2001b1f5d3383252ab7da3fa (diff) | |
download | zix-028b861412cee8787b5dfc2051c50a0d1c85dbcb.tar.gz zix-028b861412cee8787b5dfc2051c50a0d1c85dbcb.tar.bz2 zix-028b861412cee8787b5dfc2051c50a0d1c85dbcb.zip |
Fix typo in comment
-rw-r--r-- | src/posix/environment_posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/posix/environment_posix.c b/src/posix/environment_posix.c index 0dd9358..32a1c8d 100644 --- a/src/posix/environment_posix.c +++ b/src/posix/environment_posix.c @@ -59,7 +59,7 @@ append_var(ZixAllocator* const allocator, return append_str(allocator, dst_len, dst, ref_len, ref); } -// Copy a variable reference string like $NAME to a null-termianted string +// Copy a variable reference string like $NAME to a null-terminated string static char* set_ref(ZixAllocator* const allocator, char** const buffer, |