diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-08-17 07:57:53 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-08-17 07:57:53 +0000 |
commit | e0022540014d498ee2ba366000c91c118db52b36 (patch) | |
tree | 6a61417ff57638c423a2814beca1a04de4e7675a | |
parent | 5ab61bd6e3c21d35ed418613676f3be86fd78869 (diff) |
Fixed definition.
-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) { |