irouter/irCommand.c: fix SetNoisyDI() usage
WARNING 64bit to 32bit truncation Was directly overwriting a 32bit storage location with a 64bit value.
This commit is contained in:
parent
fd5050b2b5
commit
fadd2d98b4
|
|
@ -585,7 +585,9 @@ irWzdSetBloomLimit(s,file)
|
|||
char *s;
|
||||
FILE *file;
|
||||
{
|
||||
SetNoisyDI(&(irMazeParms->mp_bloomLimit),s,file);
|
||||
dlong tmp;
|
||||
SetNoisyDI(&tmp,s,file);
|
||||
irMazeParms->mp_bloomLimit = tmp; /* FIXME should this be truncated ? */
|
||||
}
|
||||
|
||||
/* irWzdSetBoundsIncrement -- */
|
||||
|
|
|
|||
Loading…
Reference in New Issue