C99 requires explicit marking of integer literals' size.

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@736 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Pierre Ossman 2006-04-18 12:46:03 +00:00
parent 4482e6867d
commit 8b99a067a8
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ char *pa_sdp_build(int af, const void *src, const void *dst, const char *name, u
if (!(u = getenv("USERNAME")))
u = "-";
ntp = time(NULL) + 2208988800;
ntp = time(NULL) + 2208988800U;
a = inet_ntop(af, src, buf_src, sizeof(buf_src));
assert(a);