diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-21 15:27:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-21 15:27:30 +0000 |
commit | ae56e1b2dcb5b46688524346a1d7321f1834501b (patch) | |
tree | 2839e8d2a17705d3ddeab3863da3f959b02f2d95 /usr.bin/mg/def.h | |
parent | f9a150bd5925e830c0913f1419603d4724f08a01 (diff) |
KNF
Diffstat (limited to 'usr.bin/mg/def.h')
-rw-r--r-- | usr.bin/mg/def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h index 1e7847ea942..177c6d16bb5 100644 --- a/usr.bin/mg/def.h +++ b/usr.bin/mg/def.h @@ -1,4 +1,4 @@ -/* $OpenBSD: def.h,v 1.33 2002/02/21 04:21:05 vincent Exp $ */ +/* $OpenBSD: def.h,v 1.34 2002/02/21 15:27:29 deraadt Exp $ */ #include <sys/queue.h> @@ -257,8 +257,8 @@ typedef struct { * This structure holds information about recent actions for the Undo command. */ struct undo_rec { - LIST_ENTRY(undo_rec) next; - BUFFER *buf; + LIST_ENTRY(undo_rec) next; + BUFFER *buf; enum { INSERT = 1, DELETE, @@ -268,7 +268,7 @@ struct undo_rec { REGION region; int pos; int size; - char *content; + char *content; }; LIST_HEAD(undo_list, undo_rec); |