From 25224b0e7a1d81a3bfd0f04c4003b6a1ffd1bf0d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 9 Mar 2012 03:55:23 -0500 Subject: [PATCH] We never use calloc() internally. --- src/physfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/physfs.h b/src/physfs.h index 2eda8ef..045ecf5 100644 --- a/src/physfs.h +++ b/src/physfs.h @@ -2095,7 +2095,7 @@ typedef struct PHYSFS_Allocator * for it, you can probably ignore this forever.) * * By default, PhysicsFS will use whatever is reasonable for a platform - * to manage dynamic memory (usually ANSI C malloc/realloc/calloc/free, but + * to manage dynamic memory (usually ANSI C malloc/realloc/free, but * some platforms might use something else), but in some uncommon cases, the * app might want more control over the library's memory management. This * lets you redirect PhysicsFS to use your own allocation routines instead.