diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-01-26 15:07:50 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-01-26 15:07:50 +0000 |
commit | c68874c89c234949c889dfc7c468a0d578403c82 (patch) | |
tree | ec55198df00de228b25f02028f4c030f9cfcfd7e /sys/dev/pci/km.c | |
parent | 4aec45356703e9fbf73bbf09fbb17abb83475bdb (diff) |
Unify error message.
ok grange@, oga@, todd@
Diffstat (limited to 'sys/dev/pci/km.c')
-rw-r--r-- | sys/dev/pci/km.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/km.c b/sys/dev/pci/km.c index 998b5f6975a..48589ff4cf6 100644 --- a/sys/dev/pci/km.c +++ b/sys/dev/pci/km.c @@ -1,4 +1,4 @@ -/* $OpenBSD: km.c,v 1.3 2008/08/30 01:10:13 brad Exp $ */ +/* $OpenBSD: km.c,v 1.4 2009/01/26 15:07:49 kettenis Exp $ */ /* * Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru> @@ -97,7 +97,7 @@ km_attach(struct device *parent, struct device *self, void *aux) sensor_attach(&sc->sc_sensordev, &sc->sc_sensor); if (sensor_task_register(sc, km_refresh, 5) == NULL) { - printf(": unable to register the update task\n"); + printf(": unable to register update task\n"); return; } |