fix types in format string

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5510 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1999-03-11 14:02:28 +00:00
parent a5c3a9cb87
commit 0dae61d2b5
2 changed files with 2 additions and 2 deletions

View File

@@ -56,6 +56,6 @@ emalloc (size_t sz)
void *tmp = malloc (sz);
if (tmp == NULL && sz != 0)
err (1, "malloc %u", sz);
err (1, "malloc %lu", (unsigned long)sz);
return tmp;
}

View File

@@ -56,6 +56,6 @@ erealloc (void *ptr, size_t sz)
void *tmp = realloc (ptr, sz);
if (tmp == NULL && sz != 0)
err (1, "realloc %u", sz);
err (1, "realloc %lu", (unsigned long)sz);
return tmp;
}