diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-09-22 20:49:51 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-09-22 20:49:51 +0800 |
commit | 7b46c83f7317340694c49138420ecffe681a4516 (patch) | |
tree | 5a16b95ec6961bbffbc0f48d1ad9d3922bc36c12 /embed/ephy-download.c | |
parent | d04334becd2f54d92061b136c9abcd80509fbfe9 (diff) | |
download | gsoc2013-epiphany-7b46c83f7317340694c49138420ecffe681a4516.tar gsoc2013-epiphany-7b46c83f7317340694c49138420ecffe681a4516.tar.gz gsoc2013-epiphany-7b46c83f7317340694c49138420ecffe681a4516.tar.bz2 gsoc2013-epiphany-7b46c83f7317340694c49138420ecffe681a4516.tar.lz gsoc2013-epiphany-7b46c83f7317340694c49138420ecffe681a4516.tar.xz gsoc2013-epiphany-7b46c83f7317340694c49138420ecffe681a4516.tar.zst gsoc2013-epiphany-7b46c83f7317340694c49138420ecffe681a4516.zip |
Fix the build.
2004-09-22 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-download.c: (update_remaining_time):
Fix the build.
Diffstat (limited to 'embed/ephy-download.c')
-rw-r--r-- | embed/ephy-download.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-download.c b/embed/ephy-download.c index ee1a0154f..b78fef143 100644 --- a/embed/ephy-download.c +++ b/embed/ephy-download.c @@ -153,7 +153,7 @@ update_remaining_time (EphyDownload *download) float per_byte_time; per_byte_time = (float)elapsed_time / (float)cur; - download->priv->remaining_time = time_per_byte * (total - cur); + download->priv->remaining_time = per_byte_time * (total - cur); } } |