1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

Remove space to match clang coding style

This commit is contained in:
the xhr 2023-01-19 08:47:35 +01:00
parent 714add207b
commit e1072c8640

View File

@ -55,7 +55,7 @@ void auto_free_char(char** str);
#define auto_char __attribute__((__cleanup__(auto_free_char)))
#if defined(__OpenBSD__)
#define STR_MAYBE_NULL(p) (p) ? : "(null)"
#define STR_MAYBE_NULL(p) (p) ?: "(null)"
#else
#define STR_MAYBE_NULL(p) (p)
#endif