comment/pinpoint a local misuse of a structure element

This commit is contained in:
rlar 2012-02-07 17:25:55 +00:00
parent bfb8cb259c
commit c3741ae6a1
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2012-02-07 Robert Larice
* src/frontend/rawfile.c :
comment/pinpoint a local misuse of a structure element
2012-02-06 Robert Larice
* src/tclspice.c :
drop some (char*) casts

View File

@ -544,7 +544,7 @@ raw_read(char *name) {
} else if (ciprefix("color=", t)) {
v->v_defcolor = copy(t + 6);
} else if (ciprefix("scale=", t)) {
/* This is bad, but... */
// This cast is bad, but...
v->v_scale = (struct dvec *)
copy(t + 6);
} else if (ciprefix("grid=", t)) {
@ -597,7 +597,7 @@ raw_read(char *name) {
if (v->v_scale) {
for (nv = curpl->pl_dvecs; nv; nv =
nv->v_next)
if (cieq((char *) v->v_scale,
if (cieq((char *) v->v_scale, // This cast is bad, but...
nv->v_name)) {
v->v_scale = nv;
break;
@ -605,7 +605,7 @@ raw_read(char *name) {
if (!nv) {
fprintf(cp_err,
"Error: no such vector %s\n",
(char *) v->v_scale);
(char *) v->v_scale); // This cast is bad, but...
v->v_scale = NULL;
}
}