Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/rtl-sdr/commit/c403ef0bc1e3ac586495ad0338c56f47e2026b20?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

rtl_test: fix build on Mac OS

Thanks to mot for reporting.
closes #3130

Signed-off-by: Steve Markgraf <steve@steve-m.de>
master
Steve Markgraf 7 years ago
parent 566a1b942f
commit c403ef0bc1
  1. 4
      src/rtl_test.c

@ -162,8 +162,8 @@ static int ppm_gettime(struct time_generic *tg)
struct timeval tv;
rv = gettimeofday(&tv, NULL);
ts->tv_sec = tv.tv_sec;
ts->tv_nsec = tv.tv_usec * 1000;
tg->tv_sec = tv.tv_sec;
tg->tv_nsec = tv.tv_usec * 1000;
#endif
return rv;
}

Loading…
Cancel
Save