projects
/
platform
/
upstream
/
xz.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0729279
)
Fix typo in comment (INT64_MAX -> UINT64_MAX).
author
Lasse Collin
<lasse.collin@tukaani.org>
Sat, 5 Jan 2008 17:57:00 +0000
(19:57 +0200)
committer
Lasse Collin
<lasse.collin@tukaani.org>
Sat, 5 Jan 2008 17:57:00 +0000
(19:57 +0200)
src/liblzma/api/lzma/vli.h
patch
|
blob
|
history
diff --git
a/src/liblzma/api/lzma/vli.h
b/src/liblzma/api/lzma/vli.h
index
322014e
..
bc0770c
100644
(file)
--- a/
src/liblzma/api/lzma/vli.h
+++ b/
src/liblzma/api/lzma/vli.h
@@
-154,7
+154,7
@@
typedef uint64_t lzma_vli;
* The encoding scheme encodes seven bits to every byte, using minimum
* number of bytes required to represent the given value. In other words,
* it puts 7-63 bits into 1-9 bytes. This implementation limits the number
- * of bits used to 63, thus num must be at maximum of INT64_MAX / 2. You
+ * of bits used to 63, thus num must be at maximum of
U
INT64_MAX / 2. You
* may use LZMA_VLI_VALUE_MAX for clarity.
*
* \param vli Integer to be encoded