Fix #2649. When generating labels for "skip" sections, GetGranularity() is

called which wouldn't handle this type.
This commit is contained in:
Kugel Fuhr
2025-06-16 07:49:22 +02:00
parent 24b7d1fec7
commit 8d407c7b17

View File

@@ -146,8 +146,7 @@ unsigned GetGranularity (attr_t Style)
case atAddrTab: return 2;
case atRtsTab: return 2;
case atTextTab: return 1;
case atSkip:
case atSkip: return 1;
default:
Internal ("GetGranularity called for style = %d", Style);
return 0;