From 75bdf8c37990ab87fd18af1f56ec9fb68a995453 Mon Sep 17 00:00:00 2001 From: christos Date: Mon, 13 Dec 1999 10:47:38 +0000 Subject: [PATCH] indent properly a debugging statement and fix grammar. --- libexec/ld.elf_so/load.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libexec/ld.elf_so/load.c b/libexec/ld.elf_so/load.c index f5b1f9bc8e77..7a92cdd805fa 100644 --- a/libexec/ld.elf_so/load.c +++ b/libexec/ld.elf_so/load.c @@ -1,4 +1,4 @@ -/* $NetBSD: load.c,v 1.7 1999/12/13 09:22:52 christos Exp $ */ +/* $NetBSD: load.c,v 1.8 1999/12/13 10:47:38 christos Exp $ */ /* * Copyright 1996 John D. Polstra. @@ -174,7 +174,7 @@ _rtld_load_by_name(name, obj, needed, dodebug) case CTLTYPE_STRING: break; default: - warnx("unsupport sysctl type %d", x->ctltype); + warnx("unsupported sysctl type %d", x->ctltype); break; } @@ -183,8 +183,8 @@ _rtld_load_by_name(name, obj, needed, dodebug) for (i = 0; i < RTLD_MAX_ENTRY && x->entry[i].value != NULL; i++) { - if (dodebug) - dbg(("entry %d", i)); + if (dodebug) + dbg(("entry %d", i)); if (strcmp(x->entry[i].value, val.s) == 0) break; }