diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-03-30 21:30:45 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-03-30 21:30:45 +0200 |
commit | ee770c2346eb37e0dcb8b6cf3eaacf3d8efd6bbc (patch) | |
tree | 58f05092be1a17a939e861f8cadcda1b6ca2ecef /backend/ibm.h | |
parent | 0da9e21872802cfc6e975b1ebaf9efb9e5934d84 (diff) | |
parent | fef76e17ed4c607ea73b81279f9ef1d7121be900 (diff) |
Merge branch 'release/experimental/1.0.29-1_experimental1'experimental/1.0.29-1_experimental1
Diffstat (limited to 'backend/ibm.h')
-rw-r--r-- | backend/ibm.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backend/ibm.h b/backend/ibm.h index a10c923..742ebeb 100644 --- a/backend/ibm.h +++ b/backend/ibm.h @@ -1,5 +1,5 @@ /* sane - Scanner Access Now Easy. - + This file is part of the SANE package. This program is free software; you can redistribute it and/or @@ -154,7 +154,7 @@ static const SANE_Range default_y_range = static inline void _lto2b(SANE_Int val, SANE_Byte *bytes) - + { bytes[0] = (val >> 8) & 0xff; @@ -163,7 +163,7 @@ _lto2b(SANE_Int val, SANE_Byte *bytes) static inline void _lto3b(SANE_Int val, SANE_Byte *bytes) - + { bytes[0] = (val >> 16) & 0xff; @@ -214,7 +214,7 @@ _4btol(SANE_Byte *bytes) return (rv); } -typedef enum +typedef enum { OPT_NUM_OPTS = 0, @@ -374,7 +374,7 @@ struct measurements_units_page { }; struct mode_pages { - SANE_Byte page_code; + SANE_Byte page_code; SANE_Byte parameter_length; SANE_Byte rest[14]; /* modified by mf; it was 6; see above */ #if 0 |