Improve an error message.
This commit is contained in:
parent
e658a0942b
commit
e0079e1cd5
|
|
@ -721,7 +721,7 @@ op_ind(struct pnode *arg1, struct pnode *arg2)
|
||||||
v->v_numdims = 1;
|
v->v_numdims = 1;
|
||||||
v->v_dims[0] = v->v_length;
|
v->v_dims[0] = v->v_length;
|
||||||
if (v->v_length <= 1) {
|
if (v->v_length <= 1) {
|
||||||
fprintf(cp_err, "Error: nostrchring on a scalar (%s)\n",
|
fprintf(cp_err, "Error: indexing a scalar (%s)\n",
|
||||||
v->v_name);
|
v->v_name);
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue