diff options
| author | Jake Koroman <jake@jakekoroman.com> | 2025-08-05 14:32:40 -0400 |
|---|---|---|
| committer | Jake Koroman <jake@jakekoroman.com> | 2025-08-05 14:32:40 -0400 |
| commit | 19a24d6df0f66b6327d973751b582a439125a39d (patch) | |
| tree | 7b501076046f7bed57a48cd35031504cc8a56dad | |
| parent | 7351da24469bfb48f2f19ac921058485cd8e8066 (diff) | |
fix copy and paste mistake.
| -rw-r--r-- | jrk.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |
