diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2016-04-03 02:27:23 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-04-03 10:58:39 +0200 |
commit | 2fdebbcabc5416c8b4e895c4a439748050ff1259 (patch) | |
tree | 9bac1d474fd11993299503d9caa92862328ab6d8 /type.c | |
parent | 7f10b4ed6a557b7a1fd1083939156a3dcf8b377e (diff) | |
download | mig-2fdebbcabc5416c8b4e895c4a439748050ff1259.tar.gz mig-2fdebbcabc5416c8b4e895c4a439748050ff1259.tar.bz2 mig-2fdebbcabc5416c8b4e895c4a439748050ff1259.zip |
Use word_size instead of 4.
* server.c: Use word_size and update comments.
* type.c: Use word_size to compute padding.
* user.c: Use word_size and update comments.
Diffstat (limited to 'type.c')
-rw-r--r-- | type.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ itCalculateSizeInfo(ipc_type_t *it) if (it->itInLine) { u_int bytes = (it->itNumber * it->itSize + 7) / 8; - u_int padding = (4 - bytes%4)%4; + u_int padding = (word_size - bytes % word_size) % word_size; it->itTypeSize = bytes; it->itPadSize = padding; |