diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2013-06-03 21:53:13 +0200 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2013-06-03 21:56:03 +0200 |
commit | d9a6c3109fb68f1f2788792d18cbe6031a5bef58 (patch) | |
tree | 3bd4d4618afaa6e30f78de9d1a88f998cca5ad73 | |
parent | 2bbcf1b832ef5ee9de1f482f7a8a0b54dd0c2906 (diff) |
orcparse: fix copy and paste of error message
-rw-r--r-- | orc/orcparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/orc/orcparse.c b/orc/orcparse.c index 16fdaf4..c41410a 100644 --- a/orc/orcparse.c +++ b/orc/orcparse.c @@ -168,7 +168,7 @@ orc_parse_full (const char *code, OrcProgram ***programs, char **log) } } else if (strcmp (token[i], "min") == 0) { if (i == n_tokens - 1) { - orc_parse_log (parser, "error: line %d: .n mult requires multiple value\n", + orc_parse_log (parser, "error: line %d: .n min requires multiple value\n", parser->line_number); } else { orc_program_set_n_minimum (parser->program, @@ -177,7 +177,7 @@ orc_parse_full (const char *code, OrcProgram ***programs, char **log) } } else if (strcmp (token[i], "max") == 0) { if (i == n_tokens - 1) { - orc_parse_log (parser, "error: line %d: .n mult requires multiple value\n", + orc_parse_log (parser, "error: line %d: .n max requires multiple value\n", parser->line_number); } else { orc_program_set_n_maximum (parser->program, |