diff options
author | rsc <devnull@localhost> | 2004-04-19 19:35:17 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-04-19 19:35:17 +0000 |
commit | aa8086853b3826d0d03aa04154d32396b4807a84 (patch) | |
tree | c82d83fc9748b6dd8ae8d83cb4cff6f28dd73c68 /src/cmd/comm.c | |
parent | c2a9c3bb4efbad76a7971e314bdd791bbe5044ae (diff) | |
download | plan9port-aa8086853b3826d0d03aa04154d32396b4807a84.tar.gz plan9port-aa8086853b3826d0d03aa04154d32396b4807a84.tar.bz2 plan9port-aa8086853b3826d0d03aa04154d32396b4807a84.zip |
x
Diffstat (limited to 'src/cmd/comm.c')
-rw-r--r-- | src/cmd/comm.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cmd/comm.c b/src/cmd/comm.c index 8109c59c..b95b9a0e 100644 --- a/src/cmd/comm.c +++ b/src/cmd/comm.c @@ -7,7 +7,7 @@ int one; int two; int three; -char *ldr[3]; +char ldr[3][4] = { "", "\t", "\t\t" }; Biobuf *ib1; Biobuf *ib2; @@ -23,9 +23,6 @@ main(int argc, char *argv[]) int l; char lb1[LB],lb2[LB]; - ldr[0] = ""; - ldr[1] = "\t"; - ldr[2] = "\t\t"; l = 2; ARGBEGIN{ case '1': |