Skip to content

Commit

Permalink
Fixed a const thing.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 25, 2002
1 parent dfe6564 commit 723702f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions physfs_internal.h
Expand Up @@ -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);

/*
Expand Down Expand Up @@ -619,7 +619,6 @@ char *__PHYSFS_platformRealPath(const char *path);
*/
int __PHYSFS_platformMkDir(const char *path);


#ifdef __cplusplus
}
#endif
Expand Down

0 comments on commit 723702f

Please sign in to comment.