From f36489098f5a6eaeaff6d6cc3bde219a8250cbac Mon Sep 17 00:00:00 2001 From: Edoardo Prezioso Date: Sat, 2 Apr 2016 23:01:51 +0200 Subject: [PATCH] - Fixed one GCC/Clang warning. --- src/portal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/portal.cpp b/src/portal.cpp index b8e0f80e5..f0c5b8962 100644 --- a/src/portal.cpp +++ b/src/portal.cpp @@ -1054,7 +1054,7 @@ void P_CreateLinkedPortals() if (cz < fz) { // This is a fatal condition. We have to remove one of the two portals. Choose the one that doesn't match the current plane - Printf("Error in sector %d: Ceiling portal at z=%d is below floor portal at z=%d\n", i, cz, fz); + Printf("Error in sector %d: Ceiling portal at z=%f is below floor portal at z=%f\n", i, cz, fz); double cp = -sectors[i].ceilingplane.fD(); double fp = -sectors[i].ceilingplane.fD(); if (cp < fp || fz == fp)