aboutsummaryrefslogtreecommitdiff
path: root/type.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2016-04-03 02:27:23 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-04-03 10:58:39 +0200
commit2fdebbcabc5416c8b4e895c4a439748050ff1259 (patch)
tree9bac1d474fd11993299503d9caa92862328ab6d8 /type.c
parent7f10b4ed6a557b7a1fd1083939156a3dcf8b377e (diff)
downloadmig-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/type.c b/type.c
index 26a39b7..6e2319e 100644
--- a/type.c
+++ b/type.c
@@ -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;