aboutsummaryrefslogtreecommitdiffstats
path: root/pipe.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-02-22 13:55:02 +0100
committerMattias Andrée <m@maandree.se>2026-02-22 13:55:02 +0100
commit6648e5a80e33bdae4ba70c81231a2a28ac7b4411 (patch)
tree7da787e854b3f56dc860500e59ab61e484041681 /pipe.c
parentUpdate e-mail (diff)
downloadliberror-libc-6648e5a80e33bdae4ba70c81231a2a28ac7b4411.tar.gz
liberror-libc-6648e5a80e33bdae4ba70c81231a2a28ac7b4411.tar.bz2
liberror-libc-6648e5a80e33bdae4ba70c81231a2a28ac7b4411.tar.xz
m fixesHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'pipe.c')
-rw-r--r--pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pipe.c b/pipe.c
index a0cd32f..058201c 100644
--- a/pipe.c
+++ b/pipe.c
@@ -14,10 +14,10 @@ liberror_pipe_failed(int fds[2])
desc = "Output parameter is an invalid pointer";
break;
case EMFILE:
- desc = "The process have too many file descriptors open";
+ desc = "The process has too many file descriptors open";
break;
case ENFILE:
- desc = "The system have too many file descriptors open";
+ desc = "The system has too many file descriptors open";
break;
default:
desc = "";