From 723702fedb1bfea2e9e6bf9e85fd8bf6a3ab8bf4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 25 Mar 2002 04:05:52 +0000 Subject: [PATCH] Fixed a const thing. --- physfs_internal.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/physfs_internal.h b/physfs_internal.h index 64e7969b..1b858150 100644 --- a/physfs_internal.h +++ b/physfs_internal.h @@ -418,7 +418,7 @@ PHYSFS_sint64 __PHYSFS_platformRead(void *opaque, void *buffer, * __PHYSFS_setError() to describe the problem; the file pointer should not * move in such a case. */ -PHYSFS_sint64 __PHYSFS_platformWrite(void *opaque, void *buffer, +PHYSFS_sint64 __PHYSFS_platformWrite(void *opaque, const void *buffer, PHYSFS_uint32 size, PHYSFS_uint32 count); /* @@ -619,7 +619,6 @@ char *__PHYSFS_platformRealPath(const char *path); */ int __PHYSFS_platformMkDir(const char *path); - #ifdef __cplusplus } #endif