about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-07-25 02:43:45 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-07-25 02:43:45 +0000
commitf2ff68aef4cf8101a780e4fda7437c79dc09ad5b (patch)
tree3b36d414ec96cd9d52027caff7fc0def0c504b21
parentf52e95178f36620fb6adf57d0eab02a6e2e3af66 (diff)
downloadnetpbm-mirror-f2ff68aef4cf8101a780e4fda7437c79dc09ad5b.tar.gz
netpbm-mirror-f2ff68aef4cf8101a780e4fda7437c79dc09ad5b.tar.xz
netpbm-mirror-f2ff68aef4cf8101a780e4fda7437c79dc09ad5b.zip
correct grammar in comment
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1983 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/jpeg2000/libjasper/jpc/jpc_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/other/jpeg2000/libjasper/jpc/jpc_math.h b/converter/other/jpeg2000/libjasper/jpc/jpc_math.h
index e343bab1..77df0c62 100644
--- a/converter/other/jpeg2000/libjasper/jpc/jpc_math.h
+++ b/converter/other/jpeg2000/libjasper/jpc/jpc_math.h
@@ -135,7 +135,7 @@
 #define	JPC_CEILDIVPOW2(x, y) \
 	(assert(x >= 0 && y >= 0), ((x) + (1 << (y)) - 1) >> (y))
 /* JPC_CEILDIVPOW2U is for unsigned arguments (JPC_CEILDIVPOW2 would generate
-   compiler warnings due to its superfluous >= 0 check)
+   compiler warnings because of its superfluous >= 0 check)
 */
 #define	JPC_CEILDIVPOW2U(x, y) \
 	(((x) + (1 << (y)) - 1) >> (y))