Commit e7661d19 authored by Yang Tse's avatar Yang Tse
Browse files

lib599.c: fix compiler warning

parent 13c7b911
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -23,8 +23,6 @@

#include "memdebug.h"

static double dl;

static int progress_callback(void *clientp, double dltotal,
                             double dlnow, double ultotal, double ulnow)
{
@@ -32,8 +30,6 @@ static int progress_callback(void *clientp, double dltotal,
  (void)ulnow;
  (void)ultotal;

  dl = dltotal;

  if((dltotal > 0.0) && (dlnow > dltotal)) {
    /* this should not happen with test case 599 */
    printf("%.0f > %.0f !!\n", dltotal, dlnow);