]> git.marmaro.de Git - mmh/blobdiff - sbr/m_name.c
Removed the space between function names and the opening parenthesis.
[mmh] / sbr / m_name.c
index 20acffec79fa3b215a6559f71383814d3c73155b..ef391e672602b9fdc0813c8ecbdb4a5e8d860ccc 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;
 }