public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/condor] f43: Fix warning on ARM platform
@ 2026-08-25 11:23 Tim Theisen
0 siblings, 0 replies; only message in thread
From: Tim Theisen @ 2026-08-25 11:23 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/condor
Branch : f43
Commit : 1e0022ce91332aa51402010af52ebd5ce131c2e9
Author : Tim Theisen <ttheisen@fedoraproject.org>
Date : 2026-08-25T06:23:28-05:00
Stats : +24/-2 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/condor/c/1e0022ce91332aa51402010af52ebd5ce131c2e9?branch=f43
Log:
Fix warning on ARM platform
---
diff --git a/condor.spec b/condor.spec
index 3bdebd0..5fae2d9 100644
--- a/condor.spec
+++ b/condor.spec
@@ -1,6 +1,6 @@
# Set the version and release here
%global condor_version 25.13.2
-%global condor_release 2
+%global condor_release 3
# set uw_build to 0 for downstream (Fedora or EPEL)
# UW build includes stuff for testing and tarballs
@@ -36,7 +36,7 @@ Source1: %{name}.sysusers.conf
Source2: htcondor.pp
%endif
-Patch1: turn-off-warnings-as-errors.patch
+Patch1: fix-arm-warning.patch
ExcludeArch: %{ix86}
@@ -1347,6 +1347,9 @@ fi
# configuration
%changelog
+* Tue Aug 25 2026 Tim Theisen <ttheisen@fedoraproject.org> - 25.13.2-3
+- Fix warning on ARM plaform
+
* Sun Aug 23 2026 Tim Theisen <ttheisen@fedoraproject.org> - 25.13.2-2
- Drop htgettoken requirement from credmon-multi
diff --git a/fix-arm-warning.patch b/fix-arm-warning.patch
new file mode 100644
index 0000000..6756185
--- /dev/null
+++ b/fix-arm-warning.patch
@@ -0,0 +1,19 @@
+commit a55507f50e28f1af085df614a096ed617182b222
+Author: Greg Thain <gthain@cs.wisc.edu>
+Date: Mon Aug 24 09:01:54 2026 -0500
+
+ HTCONDOR-3851 Fix arm warning, where "char" is unsigned by default
+
+diff --git a/src/condor_utils/ad_printmask.h b/src/condor_utils/ad_printmask.h
+index 57c05e9daf..78921e7d44 100644
+--- a/src/condor_utils/ad_printmask.h
++++ b/src/condor_utils/ad_printmask.h
+@@ -99,7 +99,7 @@ struct Formatter
+ int width; // 0 for 'width from printf'
+ int options; // one or more of Formatter_Opt_XXX options
+ char fmt_letter; // actual letter in the % escape
+- char fmt_type; // one of the the printf_fmt_t enum values.
++ signed char fmt_type; // one of the the printf_fmt_t enum values (signed: PFT_CRASH is -1).
+ char fmtKind; // identifies type type of the union
+ char altKind; // identifies type of alt text to print when attribute cannot be fetched
+ const char * printfFmt; // may be NULL if fmtKind != PRINTF_FMT
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-25 11:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-25 11:23 [rpms/condor] f43: Fix warning on ARM platform Tim Theisen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox