Hi,

On Apr 7, 2006, at 10:47 AM, David van der Spoel wrote:

Erik Lindahl wrote:
Hi Raja,
Try changing the "void" on line 150 to "char". gcc doesn't complain about this casting even with full warnings, so we missed one instance.
Maybe you'd rather need

pc = (void *)(pc + 8)

or even better

pc = &(pc[8])


Nope. We used to do that, but Digital Unix compiler (or something) complained about pointer arithmetic on void types - thus the switch to char.

It has been changed to char in all the other routines, but I missed this one!

Cheers,

Erik
_______________________________________________
gmx-users mailing list    [email protected]
http://www.gromacs.org/mailman/listinfo/gmx-users
Please don't post (un)subscribe requests to the list. Use the www interface or send it to [EMAIL PROTECTED]
Can't post? Read http://www.gromacs.org/mailing_lists/users.php

Reply via email to