fixing parallel build, getting rid of useless _DEPENDENCIES declarations
[oweals/gnunet.git] / src / regex / perf-regex.c
index 163cacd1e5815ff3859a18c269b94bd756526e43..3f1e771154dcbc1defbcff28e7b7cca95cd44e7e 100644 (file)
@@ -41,7 +41,7 @@
  * @param num_edges number of edges leaving current state.
  * @param edges edges leaving current state.
  */
-static void 
+static void
 print_edge (void *cls,
            const struct GNUNET_HashCode *key,
            const char *proof,
@@ -64,7 +64,7 @@ print_edge (void *cls,
 
 /**
  * The main function of the regex performace test.
- * 
+ *
  * Read a set of regex from a file, combine them and create a DFA from the
  * resulting combined regex.
  *
@@ -86,7 +86,7 @@ main (int argc, char *const *argv)
   if (3 != argc)
   {
     fprintf (stderr,
-            "Usage: %s REGEX_FILE COMPRESSION\n", 
+            "Usage: %s REGEX_FILE COMPRESSION\n",
             argv[0]);
     return 1;
   }
@@ -101,12 +101,12 @@ main (int argc, char *const *argv)
   compression = atoi (argv[2]);
 
   buffer = REGEX_TEST_combine (regexes);
-  GNUNET_asprintf (&regex, "GNVPN-0001-PAD(%s)(0|1)*", buffer);
+  GNUNET_asprintf (&regex, "GNUNET_REGEX_PROFILER_(%s)(0|1)*", buffer);
   size = strlen (regex);
 
-  fprintf (stderr, 
-          "Combined regex (%ld bytes):\n%s\n", 
-          size, 
+  fprintf (stderr,
+          "Combined regex (%ld bytes):\n%s\n",
+          size,
           regex);
   dfa = REGEX_INTERNAL_construct_dfa (regex, size, compression);
   printf ("********* ALL EDGES *********'\n");