summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-11 21:39:50 +1100
committerDamien Miller <djm@mindrot.org>1999-11-11 21:39:50 +1100
commit7c64ba3fc505c14c172d9b2d7695a3104b4c49f5 (patch)
tree980106bf9b34dc4eb915388a40b69ab626df1218
parent9ba3024ec3196a2e59c8af7dd80c64b53409489a (diff)
Fix compile warning
-rw-r--r--scp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/scp.c b/scp.c
index f6294f90..d31eb5cb 100644
--- a/scp.c
+++ b/scp.c
@@ -42,11 +42,11 @@ and ssh has the necessary privileges.)
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: scp.c,v 1.3 1999/11/11 01:25:14 damien Exp $
+ * $Id: scp.c,v 1.4 1999/11/11 10:39:50 damien Exp $
*/
#include "includes.h"
-RCSID("$Id: scp.c,v 1.3 1999/11/11 01:25:14 damien Exp $");
+RCSID("$Id: scp.c,v 1.4 1999/11/11 10:39:50 damien Exp $");
#include "ssh.h"
#include "xmalloc.h"
@@ -976,7 +976,7 @@ run_err(const char *fmt, ...)
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: scp.c,v 1.3 1999/11/11 01:25:14 damien Exp $
+ * $Id: scp.c,v 1.4 1999/11/11 10:39:50 damien Exp $
*/
char *
@@ -1121,7 +1121,7 @@ progressmeter(int flag)
struct timeval now, td, wait;
off_t cursize, abbrevsize;
double elapsed;
- unsigned int ratio, barlength, i, remaining;
+ int ratio, barlength, i, remaining;
char buf[256];
if (flag == -1) {