# HG changeset patch # User Mark Doliner # Date 1172349545 0 # Node ID c463709294f876bccce0ae3db813630bc88cd374 # Parent cd02b303b81f69552856af8ccfbf1285f4894afa errno is a global thingy, and using it in this header seems to make the compiler think that errno isn't an int*. I dunno. The message is a little wonky, but I guess it makes sense. Anyway, the header matches the source now. diff -r cd02b303b81f -r c463709294f8 libpurple/eventloop.h --- a/libpurple/eventloop.h Sat Feb 24 20:25:07 2007 +0000 +++ b/libpurple/eventloop.h Sat Feb 24 20:39:05 2007 +0000 @@ -143,7 +143,7 @@ * @return 0 if there is no error; -1 if there is an error, in which case errno will be set. */ int -gaim_input_get_error(int fd, int *errno); +gaim_input_get_error(int fd, int *error); /*@}*/