ngt_RandomStr(): Add implicit cast to "unsigned".

This fixes the following warning of Xcode 4.5:

 src/tool/tool.c:150:19:
  Implicit conversion loses integer precision: 'long' to 'unsigned int'
This commit is contained in:
Alexander Barton 2012-08-18 12:34:11 +02:00
parent d48e440a72
commit 922540306e
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ ngt_RandomStr( char *String, const size_t len)
struct timeval t;
gettimeofday(&t, NULL);
srand(t.tv_usec * t.tv_sec);
srand((unsigned)(t.tv_usec * t.tv_sec));
for (size_t i = 0; i < len; ++i) {
String[i] = chars[rand() % (sizeof(chars) - 1)];