summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormayeut <mayeut@users.noreply.github.com>2015-10-18 18:15:12 +0200
committermayeut <mayeut@users.noreply.github.com>2015-10-18 18:15:12 +0200
commit04291bf0ab9b6f815f242288fe7c21cd4b64fa58 (patch)
treec6cc7b215e0fea2080acaa05291ea7ad119335ab
parent46440fe368d26bc4d1d93705e2c4d670fb954a9a (diff)
Fix typo
-rw-r--r--libopenjpeg/int.h6
1 files 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);
}