[v0.94] Do not consider missing frequency file in x86_64 as a bug. Fix typos

This commit is contained in:
Dr-Noob
2020-12-26 08:52:14 +01:00
parent 1ef6daf943
commit 56a1da3428
2 changed files with 2 additions and 7 deletions

View File

@@ -32,12 +32,7 @@ long get_freq_from_file(char* path) {
int filelen;
char* buf;
if((buf = read_file(path, &filelen)) == NULL) {
#ifdef ARCH_X86
perror("open");
printBug("Could not open '%s'", path);
#elif ARCH_ARM
printWarn("Could not open '%s'", path);
#endif
return UNKNOWN_FREQ;
}