Removed the space between function names and the opening parenthesis.
[mmh] / sbr / snprintb.c
index 655831c..ce7bf8a 100644 (file)
 
 
 char *
-snprintb (char *buffer, size_t n, unsigned v, char *bits)
+snprintb(char *buffer, size_t n, unsigned v, char *bits)
 {
        register int i, j;
        register char c, *bp;
 
-       snprintf (buffer, n, bits && *bits == 010 ? "0%o" : "0x%x", v);
+       snprintf(buffer, n, bits && *bits == 010 ? "0%o" : "0x%x", v);
        bp = buffer + strlen(buffer);
 
        if (bits && *++bits) {