mirror of
https://github.com/gnustep/libs-ec.git
synced 2025-02-20 18:32:09 +00:00
Fix syntax errors inside macro
This commit is contained in:
parent
526f2072ea
commit
c4fa449c4c
1 changed files with 2 additions and 2 deletions
|
@ -44,10 +44,10 @@
|
|||
*/
|
||||
#define EcExceptionCritical(cause, format, args...) \
|
||||
[EcProc ecException: (cause) \
|
||||
specificProblem: [NSString stringWithFormat: "%s at %@ line %d", \
|
||||
specificProblem: [NSString stringWithFormat: @"%s at %@ line %d", \
|
||||
(nil == (cause) ? "Code/Data Error" : "Exception"), \
|
||||
[[NSString stringWithUTF8String: __FILE__] lastPathComponent], __LINE__] \
|
||||
perceivedSeverity: EcAlarmSeverityClear \
|
||||
perceivedSeverity: EcAlarmSeverityCritical \
|
||||
message: (format), ##args ]
|
||||
|
||||
#define EcExceptionMajor(cause, format, args...) \
|
||||
|
|
Loading…
Reference in a new issue