summaryrefslogtreecommitdiffstats
path: root/src/debugger.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/debugger.c')
-rw-r--r--src/debugger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugger.c b/src/debugger.c
index 78e32d33dc..b79f61365a 100644
--- a/src/debugger.c
+++ b/src/debugger.c
@@ -873,7 +873,7 @@ debuggy_find(
// Replace K_SNR in function name with "<SNR>".
if (!file && fname[0] == K_SPECIAL)
{
- name = alloc((unsigned)STRLEN(fname) + 3);
+ name = alloc(STRLEN(fname) + 3);
if (name == NULL)
name = fname;
else