- cleaned up makefiles
- polished code to avoid warnings
This commit is contained in:
@ -1147,13 +1147,13 @@
|
||||
switch (Cmnd_fmt[i]) {
|
||||
case ONE_INT:
|
||||
sscanf (rply_ptr->rply, "%d",
|
||||
((char *) state) + Offsets[indx]);
|
||||
(int *)(((char *) state) + Offsets[indx]));
|
||||
indx++;
|
||||
break;
|
||||
case TWO_INT:
|
||||
sscanf (rply_ptr->rply, "%d %d",
|
||||
((char *) state) + Offsets[indx],
|
||||
((char *) state) + Offsets[indx+1]);
|
||||
(int *)(((char *) state) + Offsets[indx]),
|
||||
(int *)(((char *) state) + Offsets[indx+1]));
|
||||
indx++; indx++;
|
||||
break;
|
||||
case ONE_STRING:
|
||||
|
Reference in New Issue
Block a user