Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
timeshift: fix compilation error (typecast)
  • Loading branch information
perexg committed Jan 1, 2016
1 parent 0a64e3b commit 64bbec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timeshift/timeshift_reader.c
Expand Up @@ -378,7 +378,7 @@ static int _timeshift_do_skip
cur_file->roff = tsi->pos;
else
cur_file->roff = req_time > last_time ? cur_file->size : 0;
tvhtrace("timeshift", "do skip cur_file %p roff %"PRId64, cur_file, cur_file->roff);
tvhtrace("timeshift", "do skip cur_file %p roff %"PRId64, cur_file, (int64_t)cur_file->roff);
}

return end;
Expand Down

0 comments on commit 64bbec0

Please sign in to comment.