From 9d9d15b9a81fddac347206e32594a8bc557bad49 Mon Sep 17 00:00:00 2001 From: tobias Date: Sun, 2 Jul 2017 19:06:12 +0000 Subject: [PATCH] Fixed a typo in error message. ok jmc@ --- libexec/ld.so/ldd/ldd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/ld.so/ldd/ldd.c b/libexec/ld.so/ldd/ldd.c index 1795982dc06..5ebbe62cce3 100644 --- a/libexec/ld.so/ldd/ldd.c +++ b/libexec/ld.so/ldd/ldd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ldd.c,v 1.20 2015/08/23 06:28:51 deraadt Exp $ */ +/* $OpenBSD: ldd.c,v 1.21 2017/07/02 19:06:12 tobias Exp $ */ /* * Copyright (c) 2001 Artur Grabowski * All rights reserved. @@ -113,7 +113,7 @@ doit(char *name) } if (!S_ISREG(st.st_mode)) { - warnx("%s: not an regular file", name); + warnx("%s: not a regular file", name); close(fd); return 1; } -- 2.20.1