diff options
author | Roland McGrath <roland@gnu.org> | 2003-04-11 22:07:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-04-11 22:07:03 +0000 |
commit | 52a5e9757ed1f93f1be9890e0aea4ce947635320 (patch) | |
tree | cc9dac50583a196a207255c36ac37d8c4da4d787 /string | |
parent | 9eb55f49978484763a29d9f65cf4f6b0ed5a4978 (diff) | |
download | glibc-52a5e9757ed1f93f1be9890e0aea4ce947635320.tar.gz glibc-52a5e9757ed1f93f1be9890e0aea4ce947635320.tar.xz glibc-52a5e9757ed1f93f1be9890e0aea4ce947635320.zip |
* string/tester.c (test_strcmp): Fix a typo.
Diffstat (limited to 'string')
-rw-r--r-- | string/tester.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string/tester.c b/string/tester.c index dab570500c..5f0a851104 100644 --- a/string/tester.c +++ b/string/tester.c @@ -89,8 +89,8 @@ test_strcmp (void) int k; for (k = 0; k < 0x3f; k++) { - buf1[j] = '0' ^ (k & 4); - buf2[j] = '4' ^ (k & 4); + buf1[k] = '0' ^ (k & 4); + buf2[k] = '4' ^ (k & 4); } buf1[i] = buf1[0x3f] = 0; buf2[j] = buf2[0x3f] = 0; |