Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/archival/libarchive/unxz/xz_stream.h

    r2725 r3621  
    2626#define STREAM_HEADER_SIZE 12
    2727
    28 #define HEADER_MAGIC "\3757zXZ\0"
     28#define HEADER_MAGIC "\3757zXZ"
    2929#define HEADER_MAGIC_SIZE 6
    3030
     
    3333
    3434/*
    35  * Variable-length integer can hold a 63-bit unsigned integer, or a special
    36  * value to indicate that the value is unknown.
     35 * Variable-length integer can hold a 63-bit unsigned integer or a special
     36 * value indicating that the value is unknown.
     37 *
     38 * Experimental: vli_type can be defined to uint32_t to save a few bytes
     39 * in code size (no effect on speed). Doing so limits the uncompressed and
     40 * compressed size of the file to less than 256 MiB and may also weaken
     41 * error detection slightly.
    3742 */
    3843typedef uint64_t vli_type;
Note: See TracChangeset for help on using the changeset viewer.