Commit e7b2d1b0 by dlezcano

Remove annoying error message

parent eb2ebe74
...@@ -169,10 +169,8 @@ static int freezer_state(const char *name) ...@@ -169,10 +169,8 @@ static int freezer_state(const char *name)
LXCPATH "/%s/freezer.freeze", name); LXCPATH "/%s/freezer.freeze", name);
file = fopen(freezer, "r"); file = fopen(freezer, "r");
if (!file) { if (!file)
lxc_log_syserror("failed to open %s", freezer);
return -1; return -1;
}
err = fscanf(file, "%s", status); err = fscanf(file, "%s", status);
fclose(file); fclose(file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment