diff options
Diffstat (limited to 'src/cmd/acme/dat.h')
-rw-r--r-- | src/cmd/acme/dat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/acme/dat.h b/src/cmd/acme/dat.h index d0feb095..5c156eb6 100644 --- a/src/cmd/acme/dat.h +++ b/src/cmd/acme/dat.h @@ -69,7 +69,7 @@ struct Range struct Block { - uint addr; /* disk address in bytes */ + vlong addr; /* disk address in bytes */ union { uint n; /* number of used runes in block */ @@ -80,7 +80,7 @@ struct Block struct Disk { int fd; - uint addr; /* length of temp file */ + vlong addr; /* length of temp file */ Block *free[Maxblock/Blockincr+1]; }; |