From: virtualdj Date: Wed, 20 Jul 2016 18:10:35 +0000 (+0200) Subject: Fix 'integer constant is too large' in x86 build (http.c) X-Git-Tag: v4.2.1~391 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3e8a797e3a1bc9d9bd2b693b8a52470f3179052;p=thirdparty%2Ftvheadend.git Fix 'integer constant is too large' in x86 build (http.c) --- diff --git a/src/http.c b/src/http.c index 5d8ca15d7..37dcc8112 100644 --- a/src/http.c +++ b/src/http.c @@ -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);