mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-15 22:34:58 +00:00
Commenting out messages on standard output
which interferes with programs trying to use it for legitimate purposes.
This commit is contained in:
parent
e102de53fc
commit
4c4f6c1def
@ -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
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user