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:
Roland McGrath 1996-07-19 17:18:51 +00:00
parent 87e4c1ba63
commit cf725107f3
2 changed files with 7 additions and 2 deletions

View File

@ -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>
* crypt/Makefile (lib-noranlib): Depend on
$(objpfx)libcrypt.so$(libcrypt.so-version).
(subdir): Fix name.
Thu Jul 18 04:33:21 1996 Roland McGrath <roland@baalperazim.frob.com>

View File

@ -27,9 +27,9 @@ Cambridge, MA 02139, USA. */
#include "intr-msg.h"
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);
/* Allocate space for the number at the end of DESCRIPTION. */