diff options
author | 2014-03-31 22:20:15 +0000 | |
---|---|---|
committer | 2014-03-31 22:20:15 +0000 | |
commit | 2f48a493e080d845b25ba610a566132e59f3d656 (patch) | |
tree | 487768890c7d440df920aea4d4f5388c9342fded | |
parent | Slightly better debugging code. (diff) | |
download | wireguard-openbsd-2f48a493e080d845b25ba610a566132e59f3d656.tar.xz wireguard-openbsd-2f48a493e080d845b25ba610a566132e59f3d656.zip |
Fix octal constant: "\018" -> "\020"
ok guenther
-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 { |