mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
fixed minor conversion warning
This commit is contained in:
parent
f8e9bec73a
commit
058da605cb
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ static void fn(void *opaque)
|
|||
{
|
||||
struct data *data = (struct data *)opaque;
|
||||
ZSTD_pthread_mutex_lock(&data->mutex);
|
||||
data->data[data->i] = data->i;
|
||||
data->data[data->i] = (unsigned)(data->i);
|
||||
++data->i;
|
||||
ZSTD_pthread_mutex_unlock(&data->mutex);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue