jrk

my own c stdlib to keep myself sane
git clone git://git.jakekoroman.com/jrk
Log | Files | Refs

commit 19a24d6df0f66b6327d973751b582a439125a39d
parent 7351da24469bfb48f2f19ac921058485cd8e8066
Author: Jake Koroman <jake@jakekoroman.com>
Date:   Tue,  5 Aug 2025 14:32:40 -0400

fix copy and paste mistake.

Diffstat:
Mjrk.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/jrk.h b/jrk.h @@ -331,7 +331,7 @@ jrk_fd_open_write(char *path) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); if (result < 0) - jrk_edie("jrk_fd_open_read"); + jrk_edie("jrk_fd_open_write"); return result; } @@ -344,7 +344,7 @@ jrk_fd_open_write_append(char *path) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); if (result < 0) - jrk_edie("jrk_fd_open_read"); + jrk_edie("jrk_fd_open_write_append"); return result; }