Fix wrong macro in obj_description(Obj *op) (#70)

This commit is contained in:
gitplcc 2024-02-05 20:29:56 +01:00 committed by GitHub
parent 3618b3a203
commit a2da14bfc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}