--- trunk/mdtools/md_code/randomSPRNG.cpp 2003/01/03 22:04:50 223 +++ trunk/mdtools/md_code/randomSPRNG.cpp 2003/01/27 22:12:57 250 @@ -14,7 +14,7 @@ randomSPRNG::randomSPRNG(iseed){ int randomSPRNG::nStreamsInitialized = 0; -randomSPRNG::randomSPRNG(iseed){ +randomSPRNG::randomSPRNG(int iseed){ int newSeed; nStreamsInitialized++; newSeed = abs(iseed) + nStreamsInitialized; @@ -41,7 +41,7 @@ randomSPRNG::~randomSPRNG(){ randomSPRNG::~randomSPRNG(){ - free_sprng(int *thisStream); + free_sprng(*thisStream); nStreamsInitialized--; }