Fix typo in comment.
[libfirm] / ir / adt / bipartite.c
index 1ce783a..0115c3a 100644 (file)
@@ -21,7 +21,6 @@
  * @file
  * @brief   Specialized implementation for perfect bipartite matching.
  * @author  Sebastian Hack
- * @version $Id$
  */
 #include "config.h"
 
@@ -32,7 +31,7 @@
 #include "bipartite.h"
 #include "xmalloc.h"
 
-struct _bipartite_t {
+struct bipartite_t {
        int n_left, n_right;
        bitset_t *adj[1];
 };