-1

I try to inflate tgz file in vala. First, I make tgz file in following way.

import gzip
f_in = open('test.jpg', 'rb')
f_out = gzip.open('test.gz', 'wb')
f_out.writelines(f_in)
f_out.close()
f_in.close()

Next, https://gist.github.com/ce3d04afbf34f321959b

In windows case is compile ok, but execute failure. In linux case is above gcc error.

Can you point out what is wrong with this code? Thanks.

4

1 回答 1

0

无法使用 vala master 进行复制。无论如何,应该在http://bugzilla.gnome.org报告错误。

于 2011-07-29T15:13:25.103 回答