Commit 38d4a0dd authored by Claes Sjofors's avatar Claes Sjofors

Plc editor search, annotation buffer to small for DataArithmL (refs #182)

parent 27826365
......@@ -3155,7 +3155,7 @@ int WFoe::show_executeorder()
int WFoe::search_string_next()
{
char searchstr[80];
char annotations[1300];
char annotations[8400];
int sts, size;
vldh_t_node *node_list;
vldh_t_node *node_ptr;
......@@ -3185,7 +3185,7 @@ int WFoe::search_string_next()
for ( j = searchindex; j < (int)node_count; j++) {
node_ptr = node_list + j;
sts = gre->node_annot_message( *node_ptr, annotations,
sizeof(annotations)-200, 1024);
sizeof(annotations)-200, 8192);
strcat( annotations, " ");
strcat( annotations, (*node_ptr)->hn.name);
strcat( annotations, " ");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment