]> mj.ucw.cz Git - libucw.git/commitdiff
Make regex-t compile.
authorMartin Mares <mj@ucw.cz>
Sat, 13 Mar 2004 22:31:55 +0000 (22:31 +0000)
committerMartin Mares <mj@ucw.cz>
Sat, 13 Mar 2004 22:31:55 +0000 (22:31 +0000)
lib/regex.c

index ce230848facdd0ba7b1709dc311daa23dd66312b..b9037ae3fe4b7f05f5210abbedf32688cf1f79d8 100644 (file)
@@ -113,12 +113,12 @@ rx_subst(regex *r, byte *by, byte *src, byte *dest, uns destlen)
 
 #ifdef TEST
 
-void main(int argc, char **argv)
+int main(int argc, char **argv)
 {
   regex *r;
   byte buf1[256], buf2[256];
 
-  r = rx_compile(argv[1]);
+  r = rx_compile(argv[1], 0);
   while (fgets(buf1, sizeof(buf1), stdin))
     {
       char *p = strchr(buf1, '\n');