diff options
author | phk <phk@FreeBSD.org> | 2002-05-14 06:59:55 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-05-14 06:59:55 +0000 |
commit | 3ea593e0da946874e76e7436296219737b44ca16 (patch) | |
tree | b8b627efc440c2b11decf50e6ed409260b6a95d1 /include | |
parent | 15562e8000ab7f1effcc24ea1be176311ecb74be (diff) | |
download | FreeBSD-src-3ea593e0da946874e76e7436296219737b44ca16.zip FreeBSD-src-3ea593e0da946874e76e7436296219737b44ca16.tar.gz |
Use explicitly sized fields for the tape format definition.
Sponsored by: DARPA & NAI Labs.
Diffstat (limited to 'include')
-rw-r--r-- | include/protocols/dumprestore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/protocols/dumprestore.h b/include/protocols/dumprestore.h index b4a45fe..ebc700d 100644 --- a/include/protocols/dumprestore.h +++ b/include/protocols/dumprestore.h @@ -73,7 +73,7 @@ union u_spcl { int32_t c_date; /* date of this dump */ int32_t c_ddate; /* date of previous dump */ int32_t c_volume; /* dump volume number */ - daddr_t c_tapea; /* logical block of this record */ + int32_t c_tapea; /* logical block of this record */ ino_t c_inumber; /* number of inode */ int32_t c_magic; /* magic number (see above) */ int32_t c_checksum; /* record checksum */ |