Commit e7b2d1b0 by dlezcano

Remove annoying error message

parent eb2ebe74
......@@ -169,10 +169,8 @@ static int freezer_state(const char *name)
LXCPATH "/%s/freezer.freeze", name);
file = fopen(freezer, "r");
if (!file) {
lxc_log_syserror("failed to open %s", freezer);
if (!file)
return -1;
}
err = fscanf(file, "%s", status);
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