diff options
Diffstat (limited to 'src/debugger.c')
-rw-r--r-- | src/debugger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugger.c b/src/debugger.c index 78e32d33d..b79f61365 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 |