The R Project SVN R

Rev

Rev 49813 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 49813 Rev 53508
Line 30... Line 30...
30
	// The default start offset is zero, so we don't need to store any
30
	// The default start offset is zero, so we don't need to store any
31
	// options unless the start offset is non-zero.
31
	// options unless the start offset is non-zero.
32
	if (opt == NULL || opt->start_offset == 0)
32
	if (opt == NULL || opt->start_offset == 0)
33
		return LZMA_OK;
33
		return LZMA_OK;
34
 
34
 
35
	integer_write_32(out, opt->start_offset);
35
	unaligned_write32le(out, opt->start_offset);
36
 
36
 
37
	return LZMA_OK;
37
	return LZMA_OK;
38
}
38
}