am 430b67d3: make_ext4fs: fix dentry padding when dentry size is 4088 or 4092

* commit '430b67d37c9f0a39bd06c128da96e37866d2ac36':
  make_ext4fs: fix dentry padding when dentry size is 4088 or 4092
diff --git a/tests/wifi/stress/wifiLoadScanAssoc.c b/tests/wifi/stress/wifiLoadScanAssoc.c
index 17536e4..801e44a 100644
--- a/tests/wifi/stress/wifiLoadScanAssoc.c
+++ b/tests/wifi/stress/wifiLoadScanAssoc.c
@@ -311,7 +311,7 @@
 
         // Stop Supplicant
         randBind(&availCPU, &cpu);
-        if ((rv = wifi_stop_supplicant()) != 0) {
+        if ((rv = wifi_stop_supplicant(false)) != 0) {
             testPrintE("CPU: %i wifi_stop_supplicant() failed, rv: %i\n",
                 cpu, rv);
             exit(23);
@@ -420,7 +420,7 @@
         // Stop wpa_supplicant
         // Might already be stopped, in which case request should
         // return immediately with success.
-        if ((rv = wifi_stop_supplicant()) != 0) {
+        if ((rv = wifi_stop_supplicant(false)) != 0) {
             testPrintE("init stop supplicant failed, rv: %i", rv);
             exit(42);
         }