Skip to content
Snippets Groups Projects
Commit 0d0fe2f9 authored by Alexis Nasr's avatar Alexis Nasr
Browse files

fixed a bug (initialization of punct_label variable) in context.c

parent d2c96a06
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,7 @@ context *context_new(void) ...@@ -80,7 +80,7 @@ context *context_new(void)
ctx->language = strdup("fr"); ctx->language = strdup("fr");
ctx->root_label = strdup("root"); ctx->root_label = strdup("root");
ctx->root_label = strdup("ponct"); ctx->punct_label = strdup("ponct");
ctx->d_perceptron_features = NULL; ctx->d_perceptron_features = NULL;
ctx->d_perceptron_features_error = NULL; ctx->d_perceptron_features_error = NULL;
ctx->mcd_struct = NULL; ctx->mcd_struct = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment