aboutsummaryrefslogtreecommitdiff
path: root/libXmu/src/RdBitF.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-05-19 08:29:46 +0000
committermarha <marha@users.sourceforge.net>2010-05-19 08:29:46 +0000
commit0c983f3cc9c6512809acba9535179961036ab632 (patch)
tree3e67226e68970cf6cfbbc2890f8c1bbc5250ff4d /libXmu/src/RdBitF.c
parent3359060101b44baae372eb1bd783f2eb5273b595 (diff)
downloadvcxsrv-0c983f3cc9c6512809acba9535179961036ab632.tar.gz
vcxsrv-0c983f3cc9c6512809acba9535179961036ab632.tar.bz2
vcxsrv-0c983f3cc9c6512809acba9535179961036ab632.zip
Solved compile warnings
Diffstat (limited to 'libXmu/src/RdBitF.c')
-rw-r--r--libXmu/src/RdBitF.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libXmu/src/RdBitF.c b/libXmu/src/RdBitF.c
index 073e3dfbd..da22507a1 100644
--- a/libXmu/src/RdBitF.c
+++ b/libXmu/src/RdBitF.c
@@ -272,7 +272,7 @@ XmuReadBitmapData(FILE *fstream, unsigned int *width, unsigned int *height,
#if defined(WIN32)
static int
-access_file(char *path, char *pathbuf, int len_pathbuf, char **pathret)
+access_file(_Xconst char *path, char *pathbuf, int len_pathbuf, char **pathret)
{
if (access (path, F_OK) == 0) {
if (strlen (path) < len_pathbuf)
@@ -288,7 +288,7 @@ access_file(char *path, char *pathbuf, int len_pathbuf, char **pathret)
}
static int
-AccessFile(char *path, char *pathbuf, int len_pathbuf, char **pathret)
+AccessFile(_Xconst char *path, char *pathbuf, int len_pathbuf, char **pathret)
{
#ifndef MAX_PATH
#define MAX_PATH 512
@@ -362,7 +362,7 @@ AccessFile(char *path, char *pathbuf, int len_pathbuf, char **pathret)
}
FILE *
-fopen_file(char *path, char *mode)
+fopen_file(_Xconst char *path, char *mode)
{
char buf[MAX_PATH];
char* bufp;