shithub: choc

Download patch

ref: cc95de13a3bbb823f856a541c43b837b921f355b
parent: 7946594661556f7bf8f427be4a714aea9be8d179
author: mfrancis95 <mikefrancis95@gmail.com>
date: Sun Dec 8 17:54:20 EST 2019

Fix fprintf warning in doom/p_setup.c

--- a/src/doom/p_setup.c
+++ b/src/doom/p_setup.c
@@ -714,7 +714,7 @@
 
     if (len > sizeof(rejectpad))
     {
-        fprintf(stderr, "PadRejectArray: REJECT lump too short to pad! (%i > %i)\n",
+        fprintf(stderr, "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).