Awesome sauce, read description below for details.
[citadel.git] / libcitadel / lib / tools.c
index 4eda91bffbb2f2af29734781884e59ab125df4f2..ffd4a5dc1d7a1ebbe6e57cb147830ce36bf69e5e 100644 (file)
@@ -34,8 +34,7 @@ typedef unsigned char byte;         // Byte type
 int safestrncpy(char *dest, const char *src, size_t n) {
        int i = 0;
 
-       if (dest == NULL || src == NULL)
-       {
+       if (dest == NULL || src == NULL) {
                fprintf(stderr, "safestrncpy: NULL argument\n");
                abort();
        }