diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/htslib.c | 2 |
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) { |