mirror of
https://github.com/gnustep/libs-ec.git
synced 2025-02-21 02:41:11 +00:00
fixup for nil return value
This commit is contained in:
parent
0e92bea5e0
commit
b3e7848177
1 changed files with 1 additions and 1 deletions
|
@ -1942,7 +1942,7 @@ static NSString *noFiles = @"No log files to archive";
|
|||
configError = nil;
|
||||
/* NB. if err is nil this will clear any currently raised alarm
|
||||
*/
|
||||
[self ecConfigurationError: @"%@", err];
|
||||
[self ecConfigurationError: @"%@", (nil == err) ? @"" : err];
|
||||
}
|
||||
|
||||
/* This method is called when the defaults database is updated for any
|
||||
|
|
Loading…
Reference in a new issue