Task #121 - fixed.err

back to task #121
download
Error: COMPILER_WARNING:
libxkbcommon-1.6.0/src/state.c: scope_hint: In function ‘xkb_state_new’
libxkbcommon-1.6.0/src/state.c:589:24: warning[-Wcalloc-transposed-args]: ‘calloc’ sizes specified with ‘sizeof’ in the earlier argument and not in the later argument
#  589 |     ret = calloc(sizeof(*ret), 1);
#      |                        ^
libxkbcommon-1.6.0/src/state.c:589:24: note: earlier argument should specify number of elements, later size of each element
#  587|       struct xkb_state *ret;
#  588|   
#  589|->     ret = calloc(sizeof(*ret), 1);
#  590|       if (!ret)
#  591|           return NULL;