diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-10-04 13:55:04 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-10-04 13:55:04 +0200 |
commit | 7a3fd562cb80da8881a5cebeab0641fcb7b2af30 (patch) | |
tree | 6361222b350e98e2c2c22c5c649c0fcb7b60ec85 /FICS/utils.c | |
parent | 85b030a13a3c802c2d8e9d064e7c8665c2a0c54a (diff) |
Refer to the array indices by using enums
Diffstat (limited to 'FICS/utils.c')
-rw-r--r-- | FICS/utils.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/FICS/utils.c b/FICS/utils.c index 4da2411..a48f4bd 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -905,10 +905,8 @@ truncate_file(char *file, int lines) if (trunc) { int fd; - errno = 0; - fd = open(file, g_open_flags[1], g_open_modes); - - if (fd < 0) { + if ((fd = open(file, g_open_flags[OPFL_WRITE], + g_open_modes)) < 0) { warn("%s: open", __func__); return 1; } else if ((fp = fdopen(fd, "w")) == NULL) { |