diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2010-11-18 06:13:32 -0500 |
---|---|---|
committer | Bazaar Package Importer <james.westby@ubuntu.com> | 2010-11-18 06:13:32 -0500 |
commit | 65aaa3c569df29180433f5d7d082655a51912bef (patch) | |
tree | 3d28ca31dc47f47821b080a0e79bafe9681c635e /src/fetch-file.vala | |
parent | 54b23ac0c57a548c29d9ccb45164faab5992a4b2 (diff) | |
parent | 680ce111a1fd648c302fddd994e7076c0b022513 (diff) | |
download | ayatana-indicator-sound-65aaa3c569df29180433f5d7d082655a51912bef.tar.gz ayatana-indicator-sound-65aaa3c569df29180433f5d7d082655a51912bef.tar.bz2 ayatana-indicator-sound-65aaa3c569df29180433f5d7d082655a51912bef.zip |
* New upstream release.
- updated to accommodate vala 0.10 to vala 0.12 api changes
- grey scale icon for default music player
- button and key handling improvements
* debian/control
- Changed build depends from valac-0.10 to valac, it builds now with
the 0.12 series
Diffstat (limited to 'src/fetch-file.vala')
-rw-r--r-- | src/fetch-file.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fetch-file.vala b/src/fetch-file.vala index 1811cc1..e6fc11d 100644 --- a/src/fetch-file.vala +++ b/src/fetch-file.vala @@ -64,7 +64,7 @@ public class FetchFile : Object ssize_t bufsize = 1; do { try { - bufsize = yield this.stream.read_async (buffer, size, GLib.Priority.DEFAULT, null); + bufsize = yield this.stream.read_async (buffer, GLib.Priority.DEFAULT, null); if (bufsize < 1) { break;} if (bufsize != size) |