diff options
Diffstat (limited to 'sci-biology/phred/files/phred-071220-fix-qa.patch')
-rw-r--r-- | sci-biology/phred/files/phred-071220-fix-qa.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/sci-biology/phred/files/phred-071220-fix-qa.patch b/sci-biology/phred/files/phred-071220-fix-qa.patch deleted file mode 100644 index ab4d2ea023f6..000000000000 --- a/sci-biology/phred/files/phred-071220-fix-qa.patch +++ /dev/null @@ -1,36 +0,0 @@ -Fix implicit declarations: -* daev.c: In function ‘processParameters’: -* daev.c:849:14: warning: implicit declaration of function ‘isdigit’ [-Wimplicit-function-declaration] -* if( !isdigit( argv[iarg][0] ) ) - ---- a/autoPhred.c -+++ b/autoPhred.c -@@ -57,6 +57,7 @@ - static int xstrcmp(); - #endif - -+int freeMBRData( MBRData *mbrData ); - #ifdef ANSI_C - int autoPhred( Option *option ) - #else ---- a/daev.c -+++ b/daev.c -@@ -58,6 +58,7 @@ - #include <sys/stat.h> - #include <time.h> - #include <math.h> -+#include <ctype.h> - - #ifndef _WIN32 - #include <dirent.h> ---- a/mergedBaseRead.c -+++ b/mergedBaseRead.c -@@ -63,7 +63,7 @@ - Peak *peak; - Observed_peak *obs_peak; - -- static initFlag = 0; -+ static int initFlag = 0; - static char mchar[256][256]; - - if( initFlag == 0 ) |