diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-03-31 22:20:16 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-03-31 22:20:16 +0000 |
commit | 8e29664eea4746553207c3be4ee812589ec35b73 (patch) | |
tree | 9b747c50fe8c0b4c7e71632a55e67b8f2a915bf3 /sys | |
parent | 7defc5915f0e22f73a680925cd6414749434aefc (diff) |
Fix octal constant: "\018" -> "\020"
ok guenther
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 7a461e616f6..a65f1f258ca 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.182 2014/03/30 21:54:48 guenther Exp $ */ +/* $OpenBSD: proc.h,v 1.183 2014/03/31 22:20:15 matthew Exp $ */ /* $NetBSD: proc.h,v 1.44 1996/04/22 01:23:21 christos Exp $ */ /*- @@ -247,7 +247,7 @@ struct process { ("\20\01CONTROLT\02EXEC\03INEXEC\04EXITING\05SUGID" \ "\06SUGIDEXEC\07PPWAIT\010ISPWAIT\011PROFIL\012TRACED" \ "\013WAITED\014COREDUMP\015SINGLEEXIT\016SINGLEUNWIND" \ - "\017NOZOMBIE\018STOPPED") + "\017NOZOMBIE\020STOPPED") struct proc { |