]> git.proxmox.com Git - wasi-libc.git/blobdiff - libc-top-half/musl/src/stdio/putc.h
Format changes to musl code to fit musl's style.
[wasi-libc.git] / libc-top-half / musl / src / stdio / putc.h
index 6173fd48e1c0ed6e3217bb6efc79e4c4c946acea..2cc63d2dbe3d3e0e80530097b1913d2605a512f0 100644 (file)
@@ -23,7 +23,7 @@ static inline int do_putc(int c, FILE *f)
                return putc_unlocked(c, f);
        return locking_putc(c, f);
 #else
-        // With no threads, locking is unnecessary.
+       // With no threads, locking is unnecessary.
        return putc_unlocked(c, f);
 #endif
 }