aboutsummaryrefslogtreecommitdiff
path: root/src/fetch-file.vala
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2010-11-18 12:03:06 +0000
committerConor Curran <conor.curran@canonical.com>2010-11-18 12:03:06 +0000
commitef4655ab70c30f1b6889b1e0a2c634c10d82f1b4 (patch)
treecce01484c579ad3dbab314c54b831f3662cdc9dd /src/fetch-file.vala
parent0bdad8a144f21ecaceeb1394c2e2a61a994b53c9 (diff)
parent3ea42eb34e8cf787c98bb783d39c6f237381ffe2 (diff)
downloadayatana-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.vala2
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)