From: tobias Date: Sun, 2 Jul 2017 19:06:12 +0000 (+0000) Subject: Fixed a typo in error message. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9d9d15b9a81fddac347206e32594a8bc557bad49;p=openbsd Fixed a typo in error message. ok jmc@ --- 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; }