code: tabstyle broadcast as MPI_DOUBLE

Hello
I noticed that "tabstyle" (which is of type int) is being broadcast as
type MPI_DOUBLE in lines which contain this text:

MPI_Bcast(&tabstyle,1,MPI_DOUBLE,0,world);

This line occurs in several places:
angle_table.cpp:296
bond_table.cpp:237
pair_table.cpp:889

Greetings
Andrew

Hello
I noticed that "tabstyle" (which is of type int) is being broadcast as
type MPI_DOUBLE in lines which contain this text:

MPI_Bcast(&tabstyle,1,MPI_DOUBLE,0,world);

This line occurs in several places:
angle_table.cpp:296
bond_table.cpp:237
pair_table.cpp:889

nod. that should be and can easily be fixed.
not much harm done, though. it will unintentionally
broadcast tablength at the same time which is
set later.

axel.

fixed it - thanks Andrew

Steve