# HG changeset patch # User William Pitcock # Date 1189160343 18000 # Node ID 16044c4a34d7959f274bf87c80b546f8677adc14 # Parent 98c9257d0a807f666c80a9ec24309dd232091244 scrobbler: C99 initialisers diff -r 98c9257d0a80 -r 16044c4a34d7 src/scrobbler/plugin.c --- a/src/scrobbler/plugin.c Fri Sep 07 05:18:07 2007 -0500 +++ b/src/scrobbler/plugin.c Fri Sep 07 05:19:03 2007 -0500 @@ -56,13 +56,10 @@ static GeneralPlugin scrobbler_gp = { - NULL, - NULL, - "Scrobbler Plugin", - init, - about_show, - NULL, - cleanup + .description = "Scrobbler Plugin", + .init = init, + .about = about_show, + .cleanup = cleanup }; static gboolean ishttp(const char *a)