qsap: Resolve some compiler warnings

system/qcom/softap/sdk/qsap_api.c:351:59: error: format specifies type 'long' but the argument has type 's32' (aka 'int') [-Werror,-Wformat]
    ALOGD("cmd=%s, Val:%s, INI:%ld \n", pcmd->name, pVal, inifile);
                               ~~~                        ^~~~~~~
                               %d
system/qcom/softap/sdk/qsap_api.c:1308:58: error: format specifies type 'long' but the argument has type 's32' (aka 'int') [-Werror,-Wformat]
    ALOGD("Sap auto channel selection pautochan=%ld \n", *pautochan);
                                                ~~~      ^~~~~~~~~~
                                                %d

Change-Id: Ib6a560c94edd982156fb8b997e7891d4a406a1f4
This commit is contained in:
Jeferson
2021-08-09 20:07:20 +02:00
committed by Nolen Johnson
parent 2ca7872af0
commit 630de9bda1
2 changed files with 26 additions and 26 deletions

View File

@@ -423,7 +423,7 @@ s32 wifi_qsap_stop_bss(void)
close(sock);
if (ret) {
ALOGE("IOCTL stopbss failed: %ld", ret);
ALOGE("IOCTL stopbss failed: %d", ret);
ret = eERR_STOP_BSS;
} else {
ALOGD("STOP BSS ISSUED");