Skip to content

Commit

Permalink
lib: net: softap_wifi_profision: Fix NULl typo
Browse files Browse the repository at this point in the history
A typo slipped in during the upmerge.

Signed-off-by: Robert Lubos <[email protected]>
  • Loading branch information
rlubos committed May 29, 2024
1 parent 6e9d194 commit e6b4649
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions subsys/net/lib/softap_wifi_provision/softap_wifi_provision.c
Original file line number Diff line number Diff line change
Expand Up @@ -798,24 +798,24 @@ static void reset_entry(void *o)
static const struct smf_state state[] = {
[STATE_INIT] = SMF_CREATE_STATE(init_entry,
init_run,
NULL, NULl, NULl),
NULL, NULL, NULL),
[STATE_UNPROVISIONED] = SMF_CREATE_STATE(unprovisioned_entry,
unprovisioned_run,
unprovisioned_exit,
NULl, NULl),
NULL, NULL),
[STATE_PROVISIONING] = SMF_CREATE_STATE(provisioning_entry,
provisioning_run,
provisioning_exit,
NULl, NULl),
NULL, NULL),
[STATE_PROVISIONED] = SMF_CREATE_STATE(NULL,
provisioned_run,
provisioned_exit,
NULl, NULl),
NULL, NULL),
[STATE_FINISHED] = SMF_CREATE_STATE(finished_entry,
finished_run,
NULL, NULl, NULl),
NULL, NULL, NULL),
[STATE_RESET] = SMF_CREATE_STATE(reset_entry,
NULL, NULL, NULl, NULl),
NULL, NULL, NULL, NULL),
};

static int send_response(struct http_req *request, char *response, size_t len, int socket)
Expand Down

0 comments on commit e6b4649

Please sign in to comment.