One hint:
> int FrameCount = *argv[1];
C requires that you explicitly convert types. argv[1] would be
a pointer to char *, i.e. a null-terminated string. *argv[1]
would be the address of that string in memory. So what you'd
want would be
int FrameCount = atoi(argv[1]);
Bill
_______________________________________________
AMBER mailing list
AMBER.ambermd.org
http://lists.ambermd.org/mailman/listinfo/amber
Received on Tue Nov 02 2010 - 10:30:02 PDT