Skip to content

Commit

Permalink
Revert intermediate change
Browse files Browse the repository at this point in the history
  • Loading branch information
Devon Ryan committed Nov 18, 2024
1 parent 26fc612 commit 8895bfa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion 2bit.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void bytes2bases(char *seq, uint8_t *byte, uint32_t sz, int offset) {

// Deal with the first partial byte
if(offset != 0) {
while(offset < sz && pos < sz) {
while(offset < 4 && pos < sz) {
seq[pos++] = byte2base(foo, offset++);
}
if(pos >= sz) return;
Expand Down

0 comments on commit 8895bfa

Please sign in to comment.