mirror of git://sourceware.org/git/glibc.git
Fri Jul 19 13:18:02 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* hurd/report-wait.c (describe_number): Use unsigned long int for J. (subdir): Fix name.
This commit is contained in:
parent
87e4c1ba63
commit
cf725107f3
|
|
@ -1,7 +1,12 @@
|
||||||
|
Fri Jul 19 13:18:02 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* hurd/report-wait.c (describe_number): Use unsigned long int for J.
|
||||||
|
|
||||||
Thu Jul 18 11:42:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Thu Jul 18 11:42:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
* crypt/Makefile (lib-noranlib): Depend on
|
* crypt/Makefile (lib-noranlib): Depend on
|
||||||
$(objpfx)libcrypt.so$(libcrypt.so-version).
|
$(objpfx)libcrypt.so$(libcrypt.so-version).
|
||||||
|
(subdir): Fix name.
|
||||||
|
|
||||||
Thu Jul 18 04:33:21 1996 Roland McGrath <roland@baalperazim.frob.com>
|
Thu Jul 18 04:33:21 1996 Roland McGrath <roland@baalperazim.frob.com>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,9 @@ Cambridge, MA 02139, USA. */
|
||||||
#include "intr-msg.h"
|
#include "intr-msg.h"
|
||||||
|
|
||||||
static void
|
static void
|
||||||
describe_number (string_t description, const char *flavor, unsigned long i)
|
describe_number (string_t description, const char *flavor, unsigned long int i)
|
||||||
{
|
{
|
||||||
int j;
|
unsigned long int j;
|
||||||
char *p = __stpcpy (description, flavor);
|
char *p = __stpcpy (description, flavor);
|
||||||
|
|
||||||
/* Allocate space for the number at the end of DESCRIPTION. */
|
/* Allocate space for the number at the end of DESCRIPTION. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue