mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 02:40:08 +00:00
Update.
2002-03-24 Andreas Jaeger <aj@suse.de> * manual/memory.texi (Aligned Memory Blocks): Fix typo. * stdio-common/tst-fdopen.c (main): Remove unused variable. * iconv/tst-iconv3.c (main): Use correct printf strings.
This commit is contained in:
parent
671972156a
commit
8430ab40fb
@ -1,3 +1,11 @@
|
||||
2002-03-24 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* manual/memory.texi (Aligned Memory Blocks): Fix typo.
|
||||
|
||||
* stdio-common/tst-fdopen.c (main): Remove unused variable.
|
||||
|
||||
* iconv/tst-iconv3.c (main): Use correct printf strings.
|
||||
|
||||
2002-03-18 Roland McGrath <roland@frob.com>
|
||||
|
||||
* sysdeps/unix/bsd/bsd4.4/bits/socket.h (struct cmsgcred): New type.
|
||||
|
@ -41,9 +41,9 @@ main (int argc, char *argv[])
|
||||
printf ("Received something else\n");
|
||||
|
||||
printf ("inptr change: %td\n", inptr - inbuf);
|
||||
printf ("inlen change: %d\n", BUFSIZE - inbytes_left);
|
||||
printf ("inlen change: %zd\n", BUFSIZE - inbytes_left);
|
||||
printf ("outptr change: %zd\n", outptr - (char *) outbuf);
|
||||
printf ("outlen change: %d\n", BUFSIZE * 4 - outbytes_left);
|
||||
printf ("outlen change: %zd\n", BUFSIZE * 4 - outbytes_left);
|
||||
result = 1;
|
||||
}
|
||||
else
|
||||
|
@ -20,7 +20,7 @@ main (int argc, char *argv[])
|
||||
char *name;
|
||||
FILE *fp = NULL;
|
||||
int retval = 0;
|
||||
int c, fd;
|
||||
int fd;
|
||||
|
||||
name = tmpnam (NULL);
|
||||
fp = fopen (name, "w");
|
||||
|
Loading…
Reference in New Issue
Block a user