diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-12 21:38:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-12 21:38:32 +0000 |
commit | 2a82051f9ffeda07374b57b54999b719ab4fc43c (patch) | |
tree | 8eb87f46eb7948d8496724818be286803bd6eef3 /sys/dev/acpi/acpiprt.c | |
parent | f6ee3f0b6dcf694e03cfcf7ee29da26daf29d536 (diff) |
a little less excitement (every printf does not need to end in !)
Diffstat (limited to 'sys/dev/acpi/acpiprt.c')
-rw-r--r-- | sys/dev/acpi/acpiprt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpiprt.c b/sys/dev/acpi/acpiprt.c index 5b0d0d4b515..66eca945092 100644 --- a/sys/dev/acpi/acpiprt.c +++ b/sys/dev/acpi/acpiprt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpiprt.c,v 1.18 2007/10/08 04:15:15 krw Exp $ */ +/* $OpenBSD: acpiprt.c,v 1.19 2007/11/12 21:38:31 deraadt Exp $ */ /* * Copyright (c) 2006 Mark Kettenis <kettenis@openbsd.org> * @@ -169,7 +169,7 @@ acpiprt_prt_add(struct acpiprt_softc *sc, struct aml_value *v) if (pp->type == AML_OBJTYPE_NAMEREF) { node = aml_searchname(sc->sc_devnode, pp->v_nameref); if (node == NULL) { - printf("Invalid device!\n"); + printf("Invalid device\n"); return; } pp = node->value; |