Commit 64008762 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

64 bit fix

parent aa11a719
...@@ -279,9 +279,9 @@ res_WriteGunzipObj(struct sess *sp) ...@@ -279,9 +279,9 @@ res_WriteGunzipObj(struct sess *sp)
/*--------------------------------------------------------------------*/ /*--------------------------------------------------------------------*/
static void static void
res_WriteDirObj(struct sess *sp, size_t low, size_t high) res_WriteDirObj(struct sess *sp, ssize_t low, ssize_t high)
{ {
unsigned u = 0; ssize_t u = 0;
size_t ptr, off, len; size_t ptr, off, len;
struct storage *st; struct storage *st;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment