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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user