mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
* string/tester.c (test_strcmp): Fix a typo.
This commit is contained in:
parent
9eb55f4997
commit
52a5e9757e
@ -1,3 +1,7 @@
|
||||
2003-04-11 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* string/tester.c (test_strcmp): Fix a typo.
|
||||
|
||||
2003-04-09 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/alpha/fpu/bits/mathdef.h: Remove FLT_EVAL_METHOD definition.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user