Skip to content

Commit

Permalink
Fixed compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kratz00 committed Mar 22, 2010
1 parent 279e290 commit 6065ee9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gui_www.c
Expand Up @@ -979,11 +979,10 @@ static int MojoGui_www_productkey(const char *desc, const char *fmt,
char *buf, const int buflen,
boolean can_back, boolean can_fwd)
{
const char *prompt = xstrdup(_("Please enter your product key"));
char *retval = NULL;
char *prompt = xstrdup(_("Please enter your product key"));
int retval = -1;
char *html = NULL;
size_t len = 0, alloc = 0;
boolean checked = true;
int cancelbutton = -1;
int backbutton = -1;
int fwdbutton = -1;
Expand Down

0 comments on commit 6065ee9

Please sign in to comment.