summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>2009-02-26 19:57:11 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>2009-02-26 19:57:11 +0000
commita5487ce467b99b2f299cd2118c19538a8e6af7a8 (patch)
treee4d8c78f0edb70f7c998f510b51e1df1976f5ff0 /sys
parent99a64a694264d3d2c8ea98f06ad1aaa0367f1d27 (diff)
fix tree break with two missing chars
please commit miod@
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/arm/xscale/pxa2x0_apm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arm/xscale/pxa2x0_apm.c b/sys/arch/arm/xscale/pxa2x0_apm.c
index aeeb360b03e..ac439de0a70 100644
--- a/sys/arch/arm/xscale/pxa2x0_apm.c
+++ b/sys/arch/arm/xscale/pxa2x0_apm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pxa2x0_apm.c,v 1.29 2009/02/26 17:19:47 oga Exp $ */
+/* $OpenBSD: pxa2x0_apm.c,v 1.30 2009/02/26 19:57:10 todd Exp $ */
/*-
* Copyright (c) 2001 Alexander Guy. All rights reserved.
@@ -566,13 +566,13 @@ apmioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
if ((flag & FWRITE) == 0)
error = EBADF;
else if (apm_record_event(sc, APM_USER_STANDBY_REQ))
- error = EINVAL /* ? */
+ error = EINVAL; /* ? */
break;
case APM_IOC_SUSPEND_REQ:
if ((flag & FWRITE) == 0)
error = EBADF;
else if (apm_record_event(sc, APM_USER_SUSPEND_REQ))
- error = EINVAL /* ? */
+ error = EINVAL; /* ? */
default:
error = ENOTTY;
}