rpsock_client.c: fix printf format warning
rpsock_client.c:203:30: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘long unsigned int’ [-Wformat=]
203 | printf("client check fail total %d, \
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
204 | i %d, %08" PRIx32 ", %08x\n",
| ~~~~~~~~~~
205 | ALIGN_UP(total), i, intp[i],
206 | (ALIGN_UP(total) / sizeof(uint32_t) + i));
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| long unsigned int
Signed-off-by: wangyongrong <wangyongrong@xiaomi.com>