Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix 'integer constant is too large' in x86 build (http.c)
  • Loading branch information
virtualdj authored and perexg committed Aug 11, 2016
1 parent ef9b8bd commit e3e8a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.c
Expand Up @@ -261,7 +261,7 @@ http_get_nonce(void)

while (1) {
mono = getmonoclock();
mono ^= 0xa1687211885fcd30;
mono ^= 0xa1687211885fcd30LL;
snprintf(stamp, sizeof(stamp), "%"PRId64, mono);
m = md5sum(stamp, 1);
strcpy(n->nonce, m);
Expand Down

0 comments on commit e3e8a79

Please sign in to comment.