dlight.c: do not call perror when dlhist_open() fails
This commit is contained in:
parent
dcd515b4b1
commit
90365e9de2
1 changed files with 1 additions and 3 deletions
4
dlight.c
4
dlight.c
|
|
@ -118,10 +118,8 @@ int main(int argc, char *argv[]) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dlhist_open() < 0) {
|
if (dlhist_open() < 0)
|
||||||
perror("dlhist");
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
|
||||||
|
|
||||||
process(config);
|
process(config);
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue