silly cosmetic change

This commit is contained in:
Carlo Alberto Ferraris 2011-12-05 15:23:54 +01:00
parent f418ef05be
commit 81f89fe4ca

View file

@ -71,12 +71,9 @@ static i64 fdout_seekto(rzip_control *control, i64 pos)
void write_magic(rzip_control *control)
{
char magic[MAGIC_LEN];
memset(magic, 0, MAGIC_LEN);
strcpy(magic, "LRZI");
magic[4] = LRZIP_MAJOR_VERSION;
magic[5] = LRZIP_MINOR_VERSION;
char magic[MAGIC_LEN] = {
'L', 'R', 'Z', 'I', LRZIP_MAJOR_VERSION, LRZIP_MINOR_VERSION
};
/* File size is stored as zero for streaming STDOUT blocks when the
* file size is unknown. In encrypted files, the size is left unknown