blob: 21a3ec0a8b62dd94a9f20cb1b2395babbddae140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- a/src/GDIF/gdIF.c
+++ b/src/GDIF/gdIF.c
@@ -228,7 +228,7 @@
ToY(phase, pos), (unsigned char *)st, Col[col]);
}
-void ClosePNG()
+void ClosePNG(void)
{
int i;
--- a/src/SensorPlugins/0_SensorTk/markov.cc
+++ b/src/SensorPlugins/0_SensorTk/markov.cc
@@ -790,7 +790,7 @@
// cumule les valeurs des cases des codons synonymes et renvoie le total.
template<class CHAINE, typename T> T TabChaine<CHAINE,T> :: cumuleVAL (int indice) const
{
- char* codegenetique=CODEGENETIQUE;
+ const char* codegenetique=CODEGENETIQUE;
T cumul=0;
for (int i=0 ; i<64 ; i++) {
if ( codegenetique[i] == codegenetique[indice] )
|