1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Tue Jun 25 09:55:47 1996 David Mosberger-Tang <davidm@AZStarNet.com>

* catgets/gencat.c (write_out): Use %Zu to print variables of type
 	size_t.
	* resolv/res_debug.c (__p_rr): Print size_t variable as %lu and
	cast it to (unsigned long) to make it work both on 32 and 64
	bit architectures.

Sat Jun 22 13:05:25 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* locale/Makefile (distribute): Add `programs/' prefix to all
	files in that directory.

	* Makerules (distinfo-vars): Assign subdir directly so that `ifdef
	subdir' works.

	* MakeTAGS (sources, headers): Make them simply expanded variables
	so that all-dist is expanded before it is changed.
This commit is contained in:
Roland McGrath
1996-06-25 13:56:54 +00:00
parent 5325738ce4
commit a4242e25dc
6 changed files with 37 additions and 14 deletions

View File

@ -689,8 +689,9 @@ __p_rr(cp, msg, file)
putc('\n', file);
#endif
if (cp - cp1 != dlen) {
fprintf(file, ";; packet size error (found %d, dlen was %d)\n",
cp - cp1, dlen);
fprintf(file,
";; packet size error (found %lu, dlen was %d)\n",
(unsigned long) (cp - cp1), dlen);
cp = NULL;
}
return (cp);