From 087ee706206d7a24a4bc8b4b6df04ebe4f6b4dba Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Wed, 13 Jun 2007 11:22:31 +0000 Subject: [PATCH] git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPCR/branches/refactoring@62 60f365c0-8329-0410-b2a4-ec073aeeaa1d --- src/ecogrep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ecogrep.c b/src/ecogrep.c index e4d3f57..de687ec 100644 --- a/src/ecogrep.c +++ b/src/ecogrep.c @@ -125,11 +125,11 @@ int main(int argc, char **argv){ ecotaxonomy_t *taxonomy; // stores the taxonomy char *database = NULL; // stores the database path (for taxonomy) + char **pattern = NULL; // stores the regex pattern + char *line[19] = {0}; // stores the line int32_t *restricted_taxid = NULL; // stores the restricted taxid int32_t *ignored_taxid = NULL; // stores the ignored taxid - char **pattern = NULL; // stores the regex pattern - char *line[19] = {0}; // stores the line - int current_taxid; + int32_t current_taxid; FILE *file = NULL; // stores the data stream, stdin by default char *stream = ECOMALLOC(sizeof(char *)*10000,"error stream buffer allocation");