1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-27 22:58:24 +00:00

Commenting out messages on standard output

which interferes with programs trying to use it for legitimate purposes.
This commit is contained in:
Carles Fernandez 2016-04-27 21:00:59 +02:00
parent e102de53fc
commit 4c4f6c1def
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ int volk_gnsssdr_get_index(
}
//TODO return -1;
//something terrible should happen here
printf("Volk warning: no arch found, returning generic impl\n");
fprintf(stderr, "VOLK_GNSSSDR warning: no arch found, returning generic impl\n");
return volk_gnsssdr_get_index(impl_names, n_impls, "generic"); //but we'll fake it for now
}

View File

@ -50,7 +50,7 @@ struct volk_gnsssdr_machine *get_machine(void)
}
}
machine = max_machine;
printf("Using Volk machine: %s\n", machine->name);
//printf("Using Volk machine: %s\n", machine->name);
__alignment = machine->alignment;
__alignment_mask = (intptr_t)(__alignment-1);
return machine;