diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-11-18 12:03:06 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-11-18 12:03:06 +0000 |
commit | ef4655ab70c30f1b6889b1e0a2c634c10d82f1b4 (patch) | |
tree | cce01484c579ad3dbab314c54b831f3662cdc9dd /src/fetch-file.vala | |
parent | 0bdad8a144f21ecaceeb1394c2e2a61a994b53c9 (diff) | |
parent | 3ea42eb34e8cf787c98bb783d39c6f237381ffe2 (diff) | |
download | ayatana-indicator-sound-ef4655ab70c30f1b6889b1e0a2c634c10d82f1b4.tar.gz ayatana-indicator-sound-ef4655ab70c30f1b6889b1e0a2c634c10d82f1b4.tar.bz2 ayatana-indicator-sound-ef4655ab70c30f1b6889b1e0a2c634c10d82f1b4.zip |
merge the updates to accommodate vala 0.10 to vala 0.12 api changes
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) |