On 12/15/06, roderick young <[EMAIL PROTECTED]> wrote:
Thanks for all your work on this very useful package!

I noticed in resize.c, there's a forward declaration for the function,

static UniqueUpdateForm(...)

which my compiler assumes is type int, and later generates a warning when the 
real function is of type void.  Is the forward declaration necessary?

just change it to:

static void UniqueUpdateForm(...)

its a common error to forget the return type on functions; and, by default
they are assumed to be int's under C/C++. making it void corrects the issue.

--
// Aaron Ardiri

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/

Reply via email to