diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-02-11 13:05:39 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-02-12 09:23:53 +0800 |
commit | f37b48d7aefb675a9115c3f225b593a043646beb (patch) | |
tree | 07394ff891450b65f65908f05a21f6f30c98c495 /embed | |
parent | 081cb08e7129f9b55cd6af161aa119a7ad314395 (diff) | |
download | gsoc2013-epiphany-f37b48d7aefb675a9115c3f225b593a043646beb.tar gsoc2013-epiphany-f37b48d7aefb675a9115c3f225b593a043646beb.tar.gz gsoc2013-epiphany-f37b48d7aefb675a9115c3f225b593a043646beb.tar.bz2 gsoc2013-epiphany-f37b48d7aefb675a9115c3f225b593a043646beb.tar.lz gsoc2013-epiphany-f37b48d7aefb675a9115c3f225b593a043646beb.tar.xz gsoc2013-epiphany-f37b48d7aefb675a9115c3f225b593a043646beb.tar.zst gsoc2013-epiphany-f37b48d7aefb675a9115c3f225b593a043646beb.zip |
downloader-view: current-size is guint64 not gint64
Diffstat (limited to 'embed')
-rw-r--r-- | embed/downloader-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c index 59653c5b0..de15dbb04 100644 --- a/embed/downloader-view.c +++ b/embed/downloader-view.c @@ -452,7 +452,7 @@ update_download_row (DownloaderView *dv, WebKitDownload *download) GtkTreePath *path; GtkTreeIter iter; WebKitDownloadStatus status; - gint64 total, current; + guint64 total, current; gdouble remaining_seconds = 0.0; char *remaining, *file, *cur_progress, *name; struct tm; |