diff options
Diffstat (limited to 'ipc/util.c')
-rw-r--r-- | ipc/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/util.c b/ipc/util.c index 79ce84e890f7..69a0cc13d966 100644 --- a/ipc/util.c +++ b/ipc/util.c | |||
@@ -124,8 +124,8 @@ void ipc_init_ids(struct ipc_ids *ids) | |||
124 | ids->seq = 0; | 124 | ids->seq = 0; |
125 | { | 125 | { |
126 | int seq_limit = INT_MAX/SEQ_MULTIPLIER; | 126 | int seq_limit = INT_MAX/SEQ_MULTIPLIER; |
127 | if (seq_limit > USHORT_MAX) | 127 | if (seq_limit > USHRT_MAX) |
128 | ids->seq_max = USHORT_MAX; | 128 | ids->seq_max = USHRT_MAX; |
129 | else | 129 | else |
130 | ids->seq_max = seq_limit; | 130 | ids->seq_max = seq_limit; |
131 | } | 131 | } |