diff options
author | 2007-05-28 22:07:40 +0000 | |
---|---|---|
committer | 2007-05-28 22:07:40 +0000 | |
commit | 498878b949e14ee090b782dd9e4375fc1702c9aa (patch) | |
tree | 63283c84af88273494ca9c84de5cfd353f8e33fb /usr.bin/cvs/diff_internals.c | |
parent | the device fd is global. no need to pass it between functions. (diff) | |
download | wireguard-openbsd-498878b949e14ee090b782dd9e4375fc1702c9aa.tar.xz wireguard-openbsd-498878b949e14ee090b782dd9e4375fc1702c9aa.zip |
Line up comments with the rest of the file, like in diff(1).
Diffstat (limited to 'usr.bin/cvs/diff_internals.c')
-rw-r--r-- | usr.bin/cvs/diff_internals.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/cvs/diff_internals.c b/usr.bin/cvs/diff_internals.c index c5ee3302edd..4bfb6ed45fe 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.5 2007/03/27 07:21:21 xsa Exp $ */ +/* $OpenBSD: diff_internals.c,v 1.6 2007/05/28 22:07:40 ray Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -155,10 +155,10 @@ struct line { * understand the highly mnemonic field names) */ struct context_vec { - int a; /* start line in old file */ - int b; /* end line in old file */ - int c; /* start line in new file */ - int d; /* end line in new file */ + int a; /* start line in old file */ + int b; /* end line in old file */ + int c; /* start line in new file */ + int d; /* end line in new file */ }; struct diff_arg { |