From 8d407c7b17dde74e59d38d92803546964d69f8ac Mon Sep 17 00:00:00 2001 From: Kugel Fuhr <98353208+kugelfuhr@users.noreply.github.com> Date: Mon, 16 Jun 2025 07:49:22 +0200 Subject: [PATCH] Fix #2649. When generating labels for "skip" sections, GetGranularity() is called which wouldn't handle this type. --- src/da65/attrtab.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/da65/attrtab.c b/src/da65/attrtab.c index e35530afd..002965dff 100644 --- a/src/da65/attrtab.c +++ b/src/da65/attrtab.c @@ -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;