]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
Fix compile warnings
authorCloudwalk <cloudwalk009@gmail.com>
Wed, 26 Aug 2020 13:46:29 +0000 (09:46 -0400)
committerCloudwalk <cloudwalk009@gmail.com>
Wed, 26 Aug 2020 13:46:29 +0000 (09:46 -0400)
fs.h
gl_draw.c
prvm_cmds.c

diff --git a/fs.h b/fs.h
index e466d9908850c7ff5b0eee5941f13c1a066cdd8f..8ddaa76f412f2589438205842b8ce244f6d6fbaf 100644 (file)
--- a/fs.h
+++ b/fs.h
@@ -80,6 +80,7 @@ void FS_Purge (qfile_t* file);
 const char *FS_FileWithoutPath (const char *in);
 const char *FS_FileExtension (const char *in);
 int FS_CheckNastyPath (const char *path, qboolean isgamedir);
+int FS_rmtree(const char *dir);
 
 extern const char *const fs_checkgamedir_missing; // "(missing)"
 const char *FS_CheckGameDir(const char *gamedir); // returns NULL if nasty, fs_checkgamedir_missing (exact pointer) if missing
index a40527007abea0de2daf8758c58ba4ca6cc00a6a..3a1008859e6656b9cf0f74f5a5fd4d5d143f271e 100644 (file)
--- a/gl_draw.c
+++ b/gl_draw.c
@@ -326,7 +326,7 @@ void Draw_FreePic(const char *picname)
 qboolean Draw_PicExists(const char *name) {
        char vabuf[1024] = { 0 };
        const char *checkfmt[] = { "%s.tga", "%s.png", "%s.jpg", "%s.pcx" };
-       int i;
+       long unsigned int i;
        // TODO: actually use the gfx format list for this
        for (i = 0; i < sizeof(checkfmt) / sizeof(checkfmt[0]); ++i)
                if (FS_FileExists(va(vabuf, sizeof(vabuf), checkfmt[i], name)))
index 0a273c2faa456b12105c2d46566683a363e832ce..8655a1c38d54ce4973966a1b285d2050e4624ba1 100644 (file)
@@ -2040,7 +2040,7 @@ void VM_fcopy(prvm_prog_t *prog)
                        FS_Close(f1);
                        FS_Close(f2);
                        PRVM_G_FLOAT(OFS_RETURN) = -3;
-                       VM_Warning(prog, "VM_fcopy: %s read %I64d from %s but wrote %I64d to %s\n", prog->name, rx, fname1, wx, fname2);
+                       VM_Warning(prog, "VM_fcopy: %s read %lli from %s but wrote %lli to %s\n", prog->name, rx, fname1, wx, fname2);
                        return;
                }
        }