Only ignore clock table on ENOENT
This commit is contained in:
parent
81875450a8
commit
3d957f444c
@ -337,7 +337,7 @@ load_clock_offsets(struct clkoff *clkoff, struct emu_args *args)
|
|||||||
FILE *f = fopen(offset_file, "r");
|
FILE *f = fopen(offset_file, "r");
|
||||||
|
|
||||||
if (f == NULL) {
|
if (f == NULL) {
|
||||||
if (is_optional)
|
if (is_optional && errno == ENOENT)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err("fopen %s failed:", offset_file);
|
err("fopen %s failed:", offset_file);
|
||||||
|
Loading…
Reference in New Issue
Block a user