Skip to content
Commits on Source (4)
......@@ -2,6 +2,10 @@ snap (2013-11-29-9) UNRELEASED; urgency=medium
* Enlarge too short target string for sprintf
Closes: #897864
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.4
* Fix spelling
-- Andreas Tille <tille@debian.org> Mon, 07 May 2018 23:38:54 +0200
......
......@@ -4,11 +4,11 @@ Uploaders: Steffen Moeller <moeller@debian.org>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 10),
Build-Depends: debhelper (>= 11~),
help2man
Standards-Version: 4.1.2
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/snap.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/snap.git
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/snap
Vcs-Git: https://salsa.debian.org/med-team/snap.git
Homepage: https://www.psc.edu/index.php/user-resources/software/snap
Package: snap
......
Author: Andreas Tille <tille@debian.org>
Last-Update: Wed, 24 Aug 2016 10:43:36 +0200
Description: itoa implementation had broken identation - use
Description: itoa implementation had broken indentation - use
sprintf instead
--- a/Zoe/zoeTools.c
......
......@@ -5,3 +5,4 @@ use-CC.patch
replace_itoa_with_broken_indentation.patch
fix_missing_braces_in_if_statements.patch
gcc-8.patch
spelling.patch
Description: Fix spelling
Author: Andreas Tille <tille@debian.org>
Last-Update: Mon, 07 May 2018 23:38:54 +0200
--- a/Zoe/zoePhasePref.c
+++ b/Zoe/zoePhasePref.c
@@ -80,7 +80,7 @@ score_t zoeScorePhase (zoePhasePref pp,
case Int0: return pp->score[Ei_I0];
case Int1: case Int1T: return pp->score[Ei_I1];
case Int2: case Int2TA: case Int2TG: return pp->score[Ei_I2];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
case Exon:
switch (inc5) {
@@ -111,19 +111,19 @@ score_t zoeScorePhase (zoePhasePref pp,
switch (to) {
case Exon: return pp->score[I0_E0];
case Eterm: return pp->score[I0_Et];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
case Int1: case Int1T:
switch (to) {
case Exon: return pp->score[I1_E1];
case Eterm: return pp->score[I1_Et];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
case Int2: case Int2TA: case Int2TG:
switch (to) {
case Exon: return pp->score[I2_E2];
case Eterm: return pp->score[I2_Et];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
default: return 0;
}