summaryrefslogtreecommitdiffstats
path: root/protos.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-11-23 21:10:11 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-11-23 21:10:11 +0000
commit4cde22c39c07a8c08e8773344f8015439195f570 (patch)
tree2dcd43cfa7bd484c0f6ca14f05bea9e7471e9fe4 /protos.h
parent2746247d29fe46b242d029ae016d13633c05ef81 (diff)
Change safe_malloc's size parameter from (unsigned int) to size_t.
Diffstat (limited to 'protos.h')
-rw-r--r--protos.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/protos.h b/protos.h
index aa90ace0..7aaf35b0 100644
--- a/protos.h
+++ b/protos.h
@@ -292,7 +292,7 @@ pid_t mutt_create_filter_fd (const char *, FILE **, FILE **, FILE **, int, int,
char *safe_strdup (const char *);
void *safe_calloc (size_t, size_t);
-void *safe_malloc (unsigned int);
+void *safe_malloc (size_t);
void safe_realloc (void **, size_t);
void safe_free (void **);