mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-31 12:21:19 -03:00
Additional warnings cleanup, effective C++ violations, dead code removal
This commit is contained in:
@@ -1111,7 +1111,7 @@ int lrand48_r(struct drand48_data *buffer, long int *result)
|
||||
|
||||
int srand48_r(long int seedval, struct drand48_data *buffer)
|
||||
{
|
||||
buffer->seed = (int)seedval;
|
||||
buffer->seed = (unsigned int)seedval;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user