diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-08 05:20:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-08 05:20:39 +0000 |
commit | c04a27801cdce7c1b2d89604748ff90387db1cd4 (patch) | |
tree | a5185fca130e196a5b94d2ce5f254b4ebf19c59b /libexec | |
parent | b14a391c98bf60feab9dc2ae74491a02e4b6adf6 (diff) |
KNF
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ld.so/ldd/ldd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ld.so/ldd/ldd.c b/libexec/ld.so/ldd/ldd.c index a1bcb73758a..e21b0c0f68a 100644 --- a/libexec/ld.so/ldd/ldd.c +++ b/libexec/ld.so/ldd/ldd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ldd.c,v 1.4 2001/06/07 20:05:38 art Exp $ */ +/* $OpenBSD: ldd.c,v 1.5 2001/06/08 05:20:38 deraadt Exp $ */ /* * Copyright (c) 2001 Artur Grabowski <art@openbsd.org> * All rights reserved. @@ -151,12 +151,12 @@ doit(char *name) } if (WIFSIGNALED(status)) { fprintf(stderr, "%s: signal %d\n", name, - WTERMSIG(status)); + WTERMSIG(status)); return 1; } if (WEXITSTATUS(status)) { fprintf(stderr, "%s: exit status %d\n", name, - WEXITSTATUS(status)); + WEXITSTATUS(status)); return 1; } } |