Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/wifi_supplicant/wifi_supplicant.c

    r47b2d7e3 r1433ecda  
    5050        ((i < 0) ? "NA" : name_arr[i])
    5151
    52 static const char* ieee80211_security_type_strs[] = {
     52static const char *ieee80211_security_type_strs[] = {
    5353        "OPEN", "WEP", "WPA", "WPA2"
    5454};
    5555
    56 static const char* ieee80211_security_alg_strs[] = {
     56static const char *ieee80211_security_alg_strs[] = {
    5757        "WEP40", "WEP104", "CCMP", "TKIP"
    5858};
    5959
    60 static const char* ieee80211_security_auth_strs[] = {
     60static const char *ieee80211_security_auth_strs[] = {
    6161        "PSK", "8021X"
    6262};
     
    175175
    176176        errno_t rc = ieee80211_disconnect(sess);
    177         if(rc != EOK) {
     177        if (rc != EOK) {
    178178                if (rc == EREFUSED)
    179179                        printf("Device is not ready yet.\n");
     
    186186
    187187        rc = ieee80211_connect(sess, ssid_start, password);
    188         if(rc != EOK) {
     188        if (rc != EOK) {
    189189                if (rc == EREFUSED)
    190190                        printf("Device is not ready yet.\n");
Note: See TracChangeset for help on using the changeset viewer.