diff options
Diffstat (limited to 'src/fastd.c')
-rw-r--r-- | src/fastd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fastd.c b/src/fastd.c index ec70c6c..1990b36 100644 --- a/src/fastd.c +++ b/src/fastd.c @@ -265,7 +265,7 @@ static size_t methods_min_encrypt_head_space(fastd_context *ctx) { ret = s; } - return ALIGN(ret, 8); + return alignto(ret, 8); } static size_t methods_min_decrypt_head_space(fastd_context *ctx) { @@ -281,7 +281,7 @@ static size_t methods_min_decrypt_head_space(fastd_context *ctx) { ret = s; } - return ALIGN(ret, 8); + return alignto(ret, 8); } static size_t methods_min_encrypt_tail_space(fastd_context *ctx) { |