Skip to content

Commit

Permalink
ims_registrar_scscf: fix typo in function name uint_fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
lynxis authored and henningw committed Apr 29, 2024
1 parent 82a6d7e commit 6f908f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/ims_registrar_scscf/ims_registrar_scscf_mod.c
Expand Up @@ -786,7 +786,7 @@ static int assign_save_fixup3_async(void **param, int param_no)
return 0;
}

static int unit_fixup(void **param, int param_no)
static int uint_fixup(void **param, int param_no)
{
str s;
unsigned int *num;
Expand Down Expand Up @@ -826,7 +826,7 @@ static int save_fixup4(void **param, int param_no)
if(param_no < 4) {
return assign_save_fixup3_async(param, param_no);
} else if(param_no == 4) {
return unit_fixup(param, param_no);
return uint_fixup(param, param_no);
}

return 0;
Expand Down

0 comments on commit 6f908f0

Please sign in to comment.