summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2020-01-22 11:27:34 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2020-01-22 11:27:34 +0000
commit94effde9cace54a4b164001da229d59cc46c20ca (patch)
tree716229ec5a52751edf451e66f1e77d7e206d0b12 /src
parent7bca7fc46f67023eeeff53ebf8cf9bdb27f336c2 (diff)
Avoid Solaris compiler issue
Diffstat (limited to 'src')
-rw-r--r--src/src/structs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/structs.h b/src/src/structs.h
index 631e0f263..aa394ac73 100644
--- a/src/src/structs.h
+++ b/src/src/structs.h
@@ -888,8 +888,8 @@ typedef struct namedlist_cacheblock {
typedef struct namedlist_block {
const uschar *string; /* the list string */
namedlist_cacheblock *cache_data; /* cached domain_data or localpart_data */
- int number:31; /* the number of the list for caching */
- BOOL hide:1; /* -bP does not display value */
+ short number; /* the number of the list for caching */
+ BOOL hide; /* -bP does not display value */
} namedlist_block;
/* Structures for Access Control Lists */