GZip input stream: use 0.7.8 constructor chain up
authorPhilipp Zabel <philipp.zabel@gmail.com>
Thu, 12 Nov 2009 14:19:43 +0000 (15:19 +0100)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Thu, 12 Nov 2009 18:23:24 +0000 (19:23 +0100)
src/imdb/gzip-input-stream.vala

index e31dcb4..070461e 100644 (file)
@@ -27,7 +27,7 @@ class GzipInputStream : FilterInputStream {
        public uchar[] buf_in;
 
        public GzipInputStream (GLib.InputStream _base_stream) {
-               base_stream = _base_stream;
+               Object (base_stream: _base_stream);
                strm = InflateStream.full (15 | 32);
        }