diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-02-09 04:27:19 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-02-09 04:27:19 +0000 |
commit | 1b95eea697550aec35afae1a20cb30cc0be3f163 (patch) | |
tree | e3d3d37c2f01a1d141f2831f5da2385cdfb2fc72 /sys | |
parent | 6c69360de8d74311193f85599afaa48877ac0203 (diff) |
i missed a quote when cutting the fmt strings up.
i found the breakage with my compiler, guenther found the missing
quote with his eyes.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/proc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 92dbc1e3ed6..a0461180a5e 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.197 2015/02/09 04:06:13 dlg Exp $ */ +/* $OpenBSD: proc.h,v 1.198 2015/02/09 04:27:18 dlg Exp $ */ /* $NetBSD: proc.h,v 1.44 1996/04/22 01:23:21 christos Exp $ */ /*- @@ -384,7 +384,7 @@ struct proc { ("\20" "\01INKTR" "\02PROFPEND" "\03ALRMPEND" "\04SIGSUSPEND" \ "\05CANTSLEEP" "\07SELECT" "\010SINTR" "\012SYSTEM" "\013TIMEOUT" \ "\016WEXIT" "\020OWEUPC" "\024SUSPSINGLE" "\027SYSTRACE" \ - "\030CONTINUED" "\033THREAD" "\034SUSPSIG" \035SOFTDEP" "\037CPUPEG") + "\030CONTINUED" "\033THREAD" "\034SUSPSIG" "\035SOFTDEP" "\037CPUPEG") #define THREAD_PID_OFFSET 1000000 |