projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fb397e
)
as Rob Landley pointed out, need to fix the 1 versus i typo in indexing
author
Mike Frysinger
<vapier@gentoo.org>
Fri, 13 May 2005 03:09:20 +0000
(
03:09
-0000)
committer
Mike Frysinger
<vapier@gentoo.org>
Fri, 13 May 2005 03:09:20 +0000
(
03:09
-0000)
coreutils/comm.c
patch
|
blob
|
history
diff --git
a/coreutils/comm.c
b/coreutils/comm.c
index d3ca9c1b7ad7f91231f79516cd60f7f3ff15b70c..772dafc4dfda1b32ee480f1fc05a3133c908291f 100644
(file)
--- a/
coreutils/comm.c
+++ b/
coreutils/comm.c
@@
-71,7
+71,7
@@
static void cmp_files(char **infiles)
int i;
for (i = 0; i < 2; ++i) {
- streams[i] = ((infiles[i][0] == '=' && infiles[
1
][1]) ? stdin : bb_xfopen(infiles[i], "r"));
+ streams[i] = ((infiles[i][0] == '=' && infiles[
i
][1]) ? stdin : bb_xfopen(infiles[i], "r"));
fgets(thisline[i], LINE_LEN, streams[i]);
}