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 c4f1d33b89e4..4c465cb22360 100644 --- a/ipc/util.c +++ b/ipc/util.c | |||
@@ -133,8 +133,8 @@ void ipc_init_ids(struct ipc_ids *ids) | |||
133 | ids->seq = 0; | 133 | ids->seq = 0; |
134 | { | 134 | { |
135 | int seq_limit = INT_MAX/SEQ_MULTIPLIER; | 135 | int seq_limit = INT_MAX/SEQ_MULTIPLIER; |
136 | if(seq_limit > USHRT_MAX) | 136 | if (seq_limit > USHORT_MAX) |
137 | ids->seq_max = USHRT_MAX; | 137 | ids->seq_max = USHORT_MAX; |
138 | else | 138 | else |
139 | ids->seq_max = seq_limit; | 139 | ids->seq_max = seq_limit; |
140 | } | 140 | } |