summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2014-09-27 15:16:37 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2014-09-27 15:16:37 +0000
commit99e8acecb45ff5d5cf94ea6ca76118500975b244 (patch)
tree6b3a96b9da861c550aea157f653b23bb79b9b7a5
parentb9ee4c018e5808f547020640122005e943009e74 (diff)
Use %zu where appropriate, from Fritjof Bornebusch.
-rw-r--r--usr.bin/rcs/xmalloc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/rcs/xmalloc.c b/usr.bin/rcs/xmalloc.c
index cb609588b81..246013e576e 100644
--- a/usr.bin/rcs/xmalloc.c
+++ b/usr.bin/rcs/xmalloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xmalloc.c,v 1.4 2009/06/07 08:39:13 ray Exp $ */
+/* $OpenBSD: xmalloc.c,v 1.5 2014/09/27 15:16:36 otto Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -32,8 +32,8 @@ xmalloc(size_t size)
ptr = malloc(size);
if (ptr == NULL)
errx(1,
- "xmalloc: out of memory (allocating %lu bytes)",
- (u_long) size);
+ "xmalloc: out of memory (allocating %zu bytes)",
+ size);
return ptr;
}
@@ -48,8 +48,8 @@ xcalloc(size_t nmemb, size_t size)
errx(1, "xcalloc: nmemb * size > SIZE_MAX");
ptr = calloc(nmemb, size);
if (ptr == NULL)
- errx(1, "xcalloc: out of memory (allocating %lu bytes)",
- (u_long)(size * nmemb));
+ errx(1, "xcalloc: out of memory (allocating %zu bytes)",
+ (size * nmemb));
return ptr;
}
@@ -68,8 +68,8 @@ xrealloc(void *ptr, size_t nmemb, size_t size)
else
new_ptr = realloc(ptr, new_size);
if (new_ptr == NULL)
- errx(1, "xrealloc: out of memory (new_size %lu bytes)",
- (u_long) new_size);
+ errx(1, "xrealloc: out of memory (new_size %zu bytes)",
+ new_size);
return new_ptr;
}