Skip to content

Commit

Permalink
Merge pull request #83 from deeptools/libBigWig_version
Browse files Browse the repository at this point in the history
Copy over changes from libBigWig
  • Loading branch information
dpryan79 authored May 8, 2019
2 parents bc8682d + c0a9870 commit 3392515
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libBigWig/bigWig.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extern "C" {
/*!
* The library version number
*/
#define LIBBIGWIG_VERSION 0.4.2
#define LIBBIGWIG_VERSION 0.4.3

/*!
* If 1, then this library was compiled with remote file support.
Expand Down
2 changes: 1 addition & 1 deletion libBigWig/io.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ CURLcode urlSeek(URL_t *URL, size_t pos) {
#ifndef NOCURL
} else {
//If the location is covered by the buffer then don't seek!
if(pos < URL->filePos || pos >= URL->filePos+URL->bufSize) {
if(pos < URL->filePos || pos >= URL->filePos+URL->bufLen) {
URL->filePos = pos;
URL->bufLen = 0; //Otherwise, filePos will get incremented on the next read!
URL->bufPos = 0;
Expand Down
2 changes: 1 addition & 1 deletion pyBigWig.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <structmember.h>
#include "bigWig.h"

#define pyBigWigVersion "0.3.14"
#define pyBigWigVersion "0.3.15"

typedef struct {
PyObject_HEAD
Expand Down

0 comments on commit 3392515

Please sign in to comment.