summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortodd <todd@openbsd.org>2009-02-26 19:57:10 +0000
committertodd <todd@openbsd.org>2009-02-26 19:57:10 +0000
commita1fcf8d79171c98b7f93911baba81203b07261f8 (patch)
tree47ec53a3929034ff0bfa1df0b013a6895054ffe9
parentdeclare builds from around here to be 4.5 instead of 4.5-beta, though it (diff)
downloadwireguard-openbsd-a1fcf8d79171c98b7f93911baba81203b07261f8.tar.xz
wireguard-openbsd-a1fcf8d79171c98b7f93911baba81203b07261f8.zip
fix tree break with two missing chars
please commit miod@
-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;
}