From 04291bf0ab9b6f815f242288fe7c21cd4b64fa58 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sun, 18 Oct 2015 18:15:12 +0200 Subject: [PATCH] Fix typo --- libopenjpeg/int.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libopenjpeg/int.h b/libopenjpeg/int.h index 0ed5ba40..c0cdabe5 100644 --- a/libopenjpeg/int.h +++ b/libopenjpeg/int.h @@ -117,9 +117,9 @@ static INLINE int int_ceildivpow2(int a, int b) { } /** - + Divide a 64bits integer by a power of 2 and round upwards - + @return Returns a divided by 2^b - + */ +Divide a 64bits integer by a power of 2 and round upwards +@return Returns a divided by 2^b +*/ static INLINE int int64_ceildivpow2(int64_t a, int b) { return (int)((a + ((int64_t)1 << b) - 1) >> b); }