diff options
author | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-04-19 12:27:51 -0700 |
---|---|---|
committer | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-04-19 12:27:51 -0700 |
commit | 1608b94e6f4bc23f8f51598c3cdbb6e961a09ab8 (patch) | |
tree | 1662b16565df268e778ee8da78133c785594a04d /com32/gplinclude | |
parent | 4d684ab2b23ca677f8f3903bc9c8414ed2d12864 (diff) | |
download | syslinux-1608b94e6f4bc23f8f51598c3cdbb6e961a09ab8.tar.gz |
hdt: Fix typo in device_parameter struct
cheksum should read checksum.
Signed-off-by: Pierre-Alexandre Meyer <pierre@mouraf.org>
Diffstat (limited to 'com32/gplinclude')
-rw-r--r-- | com32/gplinclude/disk/geom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/gplinclude/disk/geom.h b/com32/gplinclude/disk/geom.h index 4dda88bf..54257aea 100644 --- a/com32/gplinclude/disk/geom.h +++ b/com32/gplinclude/disk/geom.h @@ -191,7 +191,7 @@ struct device_parameter { } __attribute__ ((packed)) unknown; } device_path; uint8_t reserved; /* reserved (0) */ - uint8_t cheksum; /* checksum of bytes 1Eh-40h (two's complement of sum, which makes + uint8_t checksum; /* checksum of bytes 1Eh-40h (two's complement of sum, which makes * the 8-bit sum of bytes 1Eh-41h equal 00h) */ } __attribute__ ((packed)); |