diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-05-30 03:30:22 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-05-30 03:30:22 +0000 |
commit | cf0cf0f49465bb45146422e1e6f5244e8bf4d8c9 (patch) | |
tree | 069b611a48577249c424e90343348580c03ed08b | |
parent | cb92c35138d095b92c442f60f6a4a2a549b75546 (diff) |
Remove cand structure (but not its definition).
-rw-r--r-- | usr.bin/cvs/diff_internals.c | 4 | ||||
-rw-r--r-- | usr.bin/rcs/diff.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/cvs/diff_internals.c b/usr.bin/cvs/diff_internals.c index 71b9c502348..aa94d71742b 100644 --- a/usr.bin/cvs/diff_internals.c +++ b/usr.bin/cvs/diff_internals.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff_internals.c,v 1.12 2007/05/30 03:24:54 ray Exp $ */ +/* $OpenBSD: diff_internals.c,v 1.13 2007/05/30 03:30:21 ray Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -143,7 +143,7 @@ struct cand { int x; int y; int pred; -} cand; +}; struct line { int serial; diff --git a/usr.bin/rcs/diff.c b/usr.bin/rcs/diff.c index 16c73b7fefc..c798f56667a 100644 --- a/usr.bin/rcs/diff.c +++ b/usr.bin/rcs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.19 2007/05/30 03:24:54 ray Exp $ */ +/* $OpenBSD: diff.c,v 1.20 2007/05/30 03:30:21 ray Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -146,7 +146,7 @@ struct cand { int x; int y; int pred; -} cand; +}; struct line { int serial; |