Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
wizard: fix compilation error (2nd)
  • Loading branch information
perexg committed Dec 9, 2015
1 parent 8e26e3e commit c766d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wizard.c
Expand Up @@ -359,7 +359,7 @@ static int network_set_value##num(void *o, const void *v) \
{ \
wizard_page_t *p = o; \
wizard_network_t *w = p->aux; \
snprintf(w->network_type##num, sizeof(w->network_type##num), v); \
snprintf(w->network_type##num, sizeof(w->network_type##num), "%s", (const char *)v); \
return 1; \
}

Expand Down

0 comments on commit c766d16

Please sign in to comment.