Removed the space between function names and the opening parenthesis.
[mmh] / sbr / context_find.c
index e5ba5ff..64ed8e0 100644 (file)
 
 
 char *
-context_find (char *str)
+context_find(char *str)
 {
        struct node *np;
 
        for (np = m_defs; np; np = np->n_next)
-               if (!mh_strcasecmp (np->n_name, str))
+               if (!mh_strcasecmp(np->n_name, str))
                        return (np->n_field);
 
        return NULL;