diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-29 15:53:30 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-29 15:53:30 +0000 |
commit | b88395a16c3c26d668ede0bdf396dcec227195c7 (patch) | |
tree | 3ee11ed9313ac71133f34a0d217439decc975800 /src | |
parent | 4f5776a8fac840619f01a61a3655a4608e04d9fd (diff) |
Unused function.
Diffstat (limited to 'src')
-rw-r--r-- | src/htslib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htslib.h b/src/htslib.h index cbd71aa..222cf88 100644 --- a/src/htslib.h +++ b/src/htslib.h @@ -620,7 +620,7 @@ HTS_STATIC int compare_mime(httrackp * opt, const char *mime, const char *file, #endif // returns (size_t) -1 upon error -static size_t off_t_to_size_t(off_t o) { +static HTS_UNUSED size_t off_t_to_size_t(off_t o) { if (o >= 0 && o < ( (size_t) -1 ) / 2) { return (size_t) o; } else { |