]> tinc-vpn.org Git - tinc/blobdiff - src/ed25519/ecdsagen.c
Reformat all code using astyle.
[tinc] / src / ed25519 / ecdsagen.c
index 5120f28776c7f64a0e68d50feb59e8fd5ccee524..9a1de1e76c77d33587ff69730b71f07e2089b992 100644 (file)
@@ -50,6 +50,7 @@ static bool write_pem(FILE *fp, const char *type, void *buf, size_t size) {
        fprintf(fp, "-----BEGIN %s-----\n", type);
 
        char base64[65];
+
        while(size) {
                size_t todo = size > 48 ? 48 : size;
                b64encode(buf, base64, todo);