summaryrefslogtreecommitdiff
path: root/src/htslib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/htslib.c')
-rw-r--r--src/htslib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htslib.c b/src/htslib.c
index 62b55fa..63a3abb 100644
--- a/src/htslib.c
+++ b/src/htslib.c
@@ -3934,7 +3934,7 @@ void hts_lowcase(char *s) {
}
// remplacer un caractère d'une chaîne dans une autre
-static HTS_INLINE void hts_replace(char *s, char from, char to) {
+HTS_INLINE void hts_replace(char *s, char from, char to) {
char *a;
while((a = strchr(s, from)) != NULL) {