diff options
author | 2023-09-11 14:33:50 +0700 | |
---|---|---|
committer | 2023-09-11 14:33:50 +0700 | |
commit | 59e0202f1af598b06a0981e4b4a3afef86591965 (patch) | |
tree | 29b287cd160309a993ee243ac453ff6ff45dd99d /academic/wise/patches/09_dnal-add-return-statement.patch | |
parent | e3b889a097b76eabd15e46aefcfac2fa0564a6b9 (diff) | |
download | slackbuilds-59e0202f1af598b06a0981e4b4a3afef86591965.tar.gz slackbuilds-59e0202f1af598b06a0981e4b4a3afef86591965.tar.xz |
games/wise: Added (Compare protein to DNA sequence).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic/wise/patches/09_dnal-add-return-statement.patch')
-rw-r--r-- | academic/wise/patches/09_dnal-add-return-statement.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/academic/wise/patches/09_dnal-add-return-statement.patch b/academic/wise/patches/09_dnal-add-return-statement.patch new file mode 100644 index 0000000000..62931ed624 --- /dev/null +++ b/academic/wise/patches/09_dnal-add-return-statement.patch @@ -0,0 +1,17 @@ +Author: Dejan Latinovic <Dejan.Latinovic@imgtec.com> +Last-Update: Mon, 4 Aug 2014 17:10:38 +0000 +Bug-Debian: http://bugs.debian.org/751277 +Description: Make sure dnal has a valid return value + This affects a bug reported against python-biopython. + +--- wise-2.4.1.orig/src/models/dnal.c ++++ wise-2.4.1/src/models/dnal.c +@@ -75,6 +75,8 @@ + + if( show_alb == TRUE ) + dump_ascii_AlnBlock(alb,stdout); ++ ++ return 0; + } + + |