foxygit / doom Log in
commit 7154c3d5288d90d088c689abadf063c442b21065
Author:     mfrancis95 <mikefrancis95@gmail.com>
AuthorDate: Sun Dec 8 22:56:01 2019 -0500
Commit:     mfrancis95 <mikefrancis95@gmail.com>
CommitDate: Sun Dec 8 22:56:01 2019 -0500

    Fix fprintf warning in strife/p_setup.c
---
 src/strife/p_setup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/strife/p_setup.c b/src/strife/p_setup.c
index b8542aba..323b32f7 100644
--- a/src/strife/p_setup.c
+++ b/src/strife/p_setup.c
@@ -695,7 +695,7 @@ static void PadRejectArray(byte *array, unsigned int len)
     if (len > sizeof(rejectpad))
     {
         fprintf(stderr,
-                "PadRejectArray: REJECT lump too short to pad! (%i > %i)\n",
+                "PadRejectArray: REJECT lump too short to pad! (%u > %i)\n",
                 len, (int) sizeof(rejectpad));

         // Pad remaining space with 0 (or 0xff, if specified on command line).