# HG changeset patch # User John Bailey # Date 1199070402 0 # Node ID a463f05b4566064b904dda79e488cc4fa4c468d1 # Parent 33f4a9e685a3c19accc56b6ac2a76dd6165b6b1c Felipe Contreras, one of our older Crazy Pacth Writers, noticed that these prototypes were incorrect when he compiled with -Wstrict-prototypes. diff -r 33f4a9e685a3 -r a463f05b4566 libpurple/connection.h --- a/libpurple/connection.h Sun Dec 30 18:46:56 2007 +0000 +++ b/libpurple/connection.h Mon Dec 31 03:06:42 2007 +0000 @@ -196,11 +196,11 @@ * available; on Windows, it uses Win32's network change notification * infrastructure. */ - void (*network_connected)(); + void (*network_connected)(void); /** Called when libpurple discovers that the computer's network * connection has gone away. */ - void (*network_disconnected)(); + void (*network_disconnected)(void); /** Called when an error causes a connection to be disconnected. * Called before #disconnected. This op is intended to replace