Removed the space between function names and the opening parenthesis.
[mmh] / sbr / m_name.c
index 20acffe..ef391e6 100644 (file)
@@ -12,11 +12,11 @@ static char name[BUFSIZ];
 
 
 char *
-m_name (int num)
+m_name(int num)
 {
        if (num <= 0)
                return "?";
 
-       snprintf (name, sizeof(name), "%d", num);
+       snprintf(name, sizeof(name), "%d", num);
        return name;
 }