remove some extra braces
This commit is contained in:
parent
f2525253bb
commit
a335eb66de
|
@ -141,9 +141,8 @@ Event::Event(
|
||||||
errno = 0;
|
errno = 0;
|
||||||
if ( mkdir(path, 0755) ) {
|
if ( mkdir(path, 0755) ) {
|
||||||
// FIXME This should not be fatal. Should probably move to a different storage area.
|
// FIXME This should not be fatal. Should probably move to a different storage area.
|
||||||
if ( errno != EEXIST ) {
|
if ( errno != EEXIST )
|
||||||
Error("Can't mkdir %s: %s", path, strerror(errno));
|
Error("Can't mkdir %s: %s", path, strerror(errno));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if ( i == 2 )
|
if ( i == 2 )
|
||||||
strncpy(date_path, path, sizeof(date_path));
|
strncpy(date_path, path, sizeof(date_path));
|
||||||
|
|
Loading…
Reference in New Issue