Commit 0b88c8e
fix: class dependency diagnostic drops categoryid in waitqueue output
mulle_objc_loadclass_print_unfulfilled_dependency always printed
"waiting for class" even when the unfulfilled dependency was on a
category (classid + categoryid). The categoryid was silently discarded,
making diagnostics misleading — e.g. "NSBundle waiting for class
MulleObjCDeps" when MulleObjCDeps the class IS loaded and the actual
blocker is a stuck MulleObjCDeps category.
Mirror the same class/category branching that
mulle_objc_loadcategory_print_unfulfilled_dependency already does
correctly: print "waiting for class" when categoryid is
MULLE_OBJC_NO_CATEGORYID, and "waiting for category" with full
"Class( Category)" notation otherwise.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent 648534b commit 0b88c8e
1 file changed
+27
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
429 | 429 | | |
430 | 430 | | |
431 | 431 | | |
| 432 | + | |
432 | 433 | | |
433 | 434 | | |
434 | 435 | | |
| |||
438 | 439 | | |
439 | 440 | | |
440 | 441 | | |
441 | | - | |
442 | | - | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
| 449 | + | |
| 450 | + | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
443 | 462 | | |
444 | 463 | | |
445 | | - | |
| 464 | + | |
446 | 465 | | |
447 | | - | |
| 466 | + | |
| 467 | + | |
448 | 468 | | |
449 | | - | |
| 469 | + | |
450 | 470 | | |
451 | | - | |
| 471 | + | |
| 472 | + | |
452 | 473 | | |
453 | 474 | | |
454 | 475 | | |
| |||
0 commit comments