mirror of https://github.com/XEphem/XEphem.git
Fix wrong macro in obj_description(Obj *op) (#70)
This commit is contained in:
parent
3618b3a203
commit
a2da14bfc6
|
|
@ -123,7 +123,7 @@ obj_description (Obj *op)
|
|||
case BINARYSTAR:
|
||||
if (op->f_class) {
|
||||
int i;
|
||||
for (i = 0; i < NFCM; i++)
|
||||
for (i = 0; i < NBCM; i++)
|
||||
if (binary_class_map[i].classcode == op->f_class)
|
||||
return (binary_class_map[i].desc);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue