Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vkquake for openSUSE:Factory checked in at 2021-12-07 23:59:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vkquake (Old) and /work/SRC/openSUSE:Factory/.vkquake.new.31177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vkquake" Tue Dec 7 23:59:57 2021 rev:11 rq:936185 version:1.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/vkquake/vkquake.changes 2021-11-27 23:43:01.240355929 +0100 +++ /work/SRC/openSUSE:Factory/.vkquake.new.31177/vkquake.changes 2021-12-08 00:00:10.295653342 +0100 @@ -1,0 +2,6 @@ +Mon Dec 6 20:01:40 UTC 2021 - Martin Hauke <[email protected]> + +- Add patch: + * 0001-Fix-format-overflow-warning-with-32-bit-gcc.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-format-overflow-warning-with-32-bit-gcc.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vkquake.spec ++++++ --- /var/tmp/diff_new_pack.gZoXoz/_old 2021-12-08 00:00:11.179650316 +0100 +++ /var/tmp/diff_new_pack.gZoXoz/_new 2021-12-08 00:00:11.179650316 +0100 @@ -25,6 +25,8 @@ Group: Amusements/Games/3D/Shoot URL: https://github.com/Novum/vkQuake Source: https://github.com/Novum/vkQuake/archive/refs/tags/%{version}.tar.gz#/vkQuake-%{version}.tar.gz +# PATCH-FIX-UPSTREAM https://github.com/Novum/vkQuake/pull/400 +Patch0: 0001-Fix-format-overflow-warning-with-32-bit-gcc.patch Source99: %{name}.changes Source100: appdata.xml Source101: %{name}.desktop ++++++ 0001-Fix-format-overflow-warning-with-32-bit-gcc.patch ++++++ >From 6c16e1ee44f0ce02fdac3a83df744a79305af13e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" <[email protected]> Date: Fri, 26 Nov 2021 07:57:31 -0500 Subject: [PATCH] Fix format overflow warning with 32-bit gcc --- Quake/gl_model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/gl_model.c b/Quake/gl_model.c index 75d2ae6..062ce2a 100644 --- a/Quake/gl_model.c +++ b/Quake/gl_model.c @@ -2465,7 +2465,7 @@ visdone: if (i < mod->numsubmodels-1) { // duplicate the basic information - char name[10]; + char name[12]; sprintf (name, "*%i", i+1); loadmodel = Mod_FindName (name); -- 2.34.1
