]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix a char type problem
authortaniwha <taniwha@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 22 Jan 2001 23:13:25 +0000 (23:13 +0000)
committertaniwha <taniwha@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 22 Jan 2001 23:13:25 +0000 (23:13 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@128 d7cf8633-e32d-0410-b094-e92efae38249

image.c

diff --git a/image.c b/image.c
index e3b62d4bd2166835603824926a277193480564c4..f4accd0a8f32300288dd416bc78685887d54753e 100644 (file)
--- a/image.c
+++ b/image.c
@@ -409,7 +409,7 @@ byte* LoadLMP (FILE *f, int matchwidth, int matchheight)
 
 void Image_StripImageExtension (char *in, char *out)
 {
-       byte *end;
+       char *end;
        end = in + strlen(in);
        if ((end - in) >= 4)
        {