diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2000-12-21 17:12:33 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2000-12-21 17:12:33 +0000 |
commit | d258c9af72040f528108377cac16037b0bf68483 (patch) | |
tree | 1db3589cac6748abecdd37404339b6046068b5b7 | |
parent | e38115d2b15020ad4fe496b52a08a43a4b14a77c (diff) | |
download | drakx-d258c9af72040f528108377cac16037b0bf68483.tar drakx-d258c9af72040f528108377cac16037b0bf68483.tar.gz drakx-d258c9af72040f528108377cac16037b0bf68483.tar.bz2 drakx-d258c9af72040f528108377cac16037b0bf68483.tar.xz drakx-d258c9af72040f528108377cac16037b0bf68483.zip |
use max compression to save a few bytes
-rw-r--r-- | mdk-stage1/mar/mar-frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/mar/mar-frontend.c b/mdk-stage1/mar/mar-frontend.c index 9529eb5b5..b9c645b58 100644 --- a/mdk-stage1/mar/mar-frontend.c +++ b/mdk-stage1/mar/mar-frontend.c @@ -143,7 +143,7 @@ mar_create_file(char *dest_file, char **files) /* ok, buffer is ready, let's write it on-disk */ { - gzFile f = gzopen(dest_file, "wb"); + gzFile f = gzopen(dest_file, "wb9"); if (!f) { perror(dest_file); |