Skip to content

Commit

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

Expand Down

0 comments on commit 8e26e3e

Please sign in to comment.