diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 15:40:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 15:40:48 +0000 |
commit | adc7d3574fc47e5d7b4c17d6fc172759264ef56b (patch) | |
tree | 0a12de737afaf64c48491af7a7299971ee6dab3d /bin/ed | |
parent | 9655a2c6583c8e6f66a020fa1c6ccf7d900b86a9 (diff) |
one more () for halex
Diffstat (limited to 'bin/ed')
-rw-r--r-- | bin/ed/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ed/io.c b/bin/ed/io.c index c73246d5570..cbf58d5d48d 100644 --- a/bin/ed/io.c +++ b/bin/ed/io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: io.c,v 1.14 2009/10/28 05:06:17 deraadt Exp $ */ +/* $OpenBSD: io.c,v 1.15 2009/10/28 15:40:47 deraadt Exp $ */ /* $NetBSD: io.c,v 1.2 1995/03/21 09:04:43 cgd Exp $ */ /* io.c: This file contains the i/o routines for the ed line editor */ @@ -206,7 +206,7 @@ write_stream(FILE *fp, int n, int m) } #ifdef DES -#define DESPUTCHAR(c, fp) (des ? put_des_char(c, (fp)) : fputc((c), (fp))) +#define DESPUTCHAR(c, fp) (des ? put_des_char((c), (fp)) : fputc((c), (fp))) #else #define DESPUTCHAR(c, fp) (fputc((c), (fp))) #endif |