Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jcharaoui committed Jan 28, 2023
1 parent 74fac1d commit e9f60d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ static void *Cache_bgdl(void *arg)
cf->next_dl_offset);
if (recv < 0) {
lprintf(error, "thread %x received %ld bytes, \
which does't make sense\n", pthread_self(), recv);
which doesn't make sense\n", pthread_self(), recv);
}

if ((recv == cf->blksz) ||
Expand Down Expand Up @@ -1030,7 +1030,7 @@ Cache_read(Cache *cf, char *const output_buf, const off_t len,
dl_offset);
if (recv < 0) {
lprintf(error, "thread %x received %ld bytes, \
which does't make sense\n", pthread_self(), recv);
which doesn't make sense\n", pthread_self(), recv);
}
/*
* check if we have received enough data, write it to the disk
Expand Down

0 comments on commit e9f60d5

Please sign in to comment.