From e0022540014d498ee2ba366000c91c118db52b36 Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Sat, 17 Aug 2013 07:57:53 +0000 Subject: Fixed definition. --- src/htslib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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) { -- cgit v1.2.3