summaryrefslogtreecommitdiff
path: root/src/htshash.h
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-04-21 18:46:35 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-04-21 18:46:35 +0000
commit78173ef8190a1d5f9bab28053b0c274329533e59 (patch)
treebcb808532b5217262ccd1cfc08a33c4af30be108 /src/htshash.h
parentaad018682d4298a476e2bca6eb8756de41fa8ca0 (diff)
Build warning cleanup.
* introduced SOClen type (aka. socklen_t)
Diffstat (limited to 'src/htshash.h')
-rw-r--r--src/htshash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htshash.h b/src/htshash.h
index 75a1a5d..20399e6 100644
--- a/src/htshash.h
+++ b/src/htshash.h
@@ -50,10 +50,10 @@ typedef struct hash_struct hash_struct;
#endif
// tables de hachage
-int hash_read(const hash_struct* hash,char* nom1,char* nom2,int type,int normalized);
+int hash_read(const hash_struct* hash,const char* nom1,const char* nom2,int type,int normalized);
void hash_write(hash_struct* hash,int lpos,int normalized);
int* hash_calc_chaine(hash_struct* hash,int type,int pos);
-unsigned long int hash_cle(char* nom1,char* nom2);
+unsigned long int hash_cle(const char* nom1,const char* nom2);
#endif
#endif