summaryrefslogtreecommitdiff
path: root/src/test_streams
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2007-02-22 01:37:33 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2007-02-22 01:37:33 +0000
commit9bedd7827c4be1e0418418f6ca3fa91b957ff6db (patch)
treef98139eafda5f179a4c01d7e17e2f59bf7ce7d6e /src/test_streams
parentc8c9c9917e3bb5af7bbeb8b6a359020b29f98587 (diff)
downloadflac-9bedd7827c4be1e0418418f6ca3fa91b957ff6db.tar.gz
fix compiler warnings
Diffstat (limited to 'src/test_streams')
-rw-r--r--src/test_streams/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_streams/main.c b/src/test_streams/main.c
index b994fc00..f3f14ecf 100644
--- a/src/test_streams/main.c
+++ b/src/test_streams/main.c
@@ -815,7 +815,7 @@ int main(int argc, char *argv[])
srandom(tv.tv_usec);
}
#else
- srand(time(0));
+ srand((unsigned)time(0));
#endif
if(!generate_01()) return 1;