rtl_fm: non-gnu str functions

Signed-off-by: Steve Markgraf <steve@steve-m.de>
master
Kyle Keen 12 years ago committed by Steve Markgraf
parent 562fd7e8e3
commit 71b254a238
  1. 3
      src/rtl_fm.c

@ -576,7 +576,8 @@ double atofs(char* f)
{
char* chop;
double suff = 1.0;
chop = strndup(f, strlen(f)-1);
chop = malloc((strlen(f)+1)*sizeof(char));
strncpy(chop, f, strlen(f)-1);
switch (f[strlen(f)-1]) {
case 'G':
suff *= 1e3;

Loading…
Cancel
Save